.form {
    float: left;
    width: 100%;
}

.box {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.box > span {
    float: right;
    margin-right: 20px;
    background: #2f3437;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    padding: 7px 10px;
}

.box .content {
    float: left;
    width: calc(100% - 22px);
    background: #e6e5e3;
    padding: 10px;
    padding-bottom: 20px;
    padding-top: 0;
    border: solid 1px #dadada;
    border-radius: 10px;
}

.form label {
    float: left;
    width: 100%;
    font-family: 'Open Sans', helvetica, arial, sans-serif;
    font-size: 13px;
    line-height: 1.42857143;
    color: #888886;
    margin-top: 10px;
    margin-bottom: 2px;
    margin-left: 5px;
}
.form input[type="file"],
.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="date"],
.form input[type="tel"],
.form textarea,
.form select {
    float: left;
    width: calc(100% - 22px);
    border: solid 1px #a7a7a7;
    border-radius: 10px;
    -webkit-box-shadow: inset 0px 9px 15px -11px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0px 9px 15px -11px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 9px 15px -11px rgba(0, 0, 0, 0.3);
    font-size: 13px;
    padding: 0 10px;
    color: #2f3437;
    outline: none;
    background: #fff;
    height: 28px;
}

.form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none !important;
    background-image: url(/images/select.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    background-size: 13px 8px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    height: 30px;
}

.form select::after {
    content: ' ';
}

.form input[type="text"]:focus {
    border: solid 1px #7091B1;
    -webkit-box-shadow: inset 0px 9px 15px -11px rgba(112, 145, 177, 0.7);
    -moz-box-shadow: inset 0px 9px 15px -11px rgba(112, 145, 177, 0.7);
    box-shadow: inset 0px 9px 15px -11px rgba(112, 145, 177, 0.7);
}

.form input[type="file"] {
    line-height: 10px;
    padding-top: 6px;
    height: 22px;
    font-size: 11px;
}

.form .box .content input[type="submit"] {
    float: left;
    width: 100%;
    background: #2f3437;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 7px 0;
    font-weight: bold;
    font-size: 11px;
    cursor: pointer;
    margin-top: 31px;
}

.form .align-submit {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form .align-submit .submit-footer {
    background: #2f3437;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 7px 15px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    margin: 0 10px;
    margin-bottom: 10px;
}

.form .radio-checkbox {
    float: left;
    margin-right: 10px;
}

.form .radio-checkbox input {
    float: left;
    margin-top: 7px;
}

.form .radio-checkbox label {
    width: auto;
    margin: 0;
    margin-top: 7px;
    font-size: 11px;
    margin-left: 3px;
}

.form input[type="text"][readonly],
.form input[type="password"][readonly],
.form input[type="email"][readonly],
.form input[type="date"][readonly],
.form input[type="tel"][readonly],
.form textarea[readonly],
.form select[readonly] {
    background: #ededed;
}

.form .checkbox-first {
    margin-left: 5px;
}

.styled-button {
    float: left;
    width: 100%;
    background: #2f3437;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 7px 0;
    font-weight: bold;
    font-size: 11px;
    cursor: pointer;
    margin-top: 31px;
}