/* ==========================================================================
   FORM STYLES
   ========================================================================== */

/** namespace everything **/
.joinforms-content * {
    font-size: 14px;
    line-height: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 32px !important;
    border-radius: 20px;
    font-size: 19px;
    font-weight: 700;
    line-height: normal;
    background-color: #000;
    border: 2px solid #000;
    color: #fff;
    transition: all .3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: #00AB2D;
    border: 2px solid #00AB2D;
    color: #fff;
}

.btn-primary:hover {
    background-color: #fff;
    border-color: #00AB2D;
    color: #00AB2D !important;
}

input:not(.v-field__input):is([type="text"], [type="email"], [type="tel"], [type="number"], [type="password"]),
textarea:not(.v-field__input) {
    color: #24242E;
    padding: 5px 15px;
    height: auto;
    border-width: 2px;
    border-style: solid;
    border-color: #24242E;
    border-radius: 0px;
    background: #fff;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
    line-height: 38px;
    font-size: 14px;
    width: 100%;
}

input:not(.v-field__input):is([type="text"], [type="email"], [type="tel"], [type="number"], [type="password"], [type="radio"], [type="checkbox"]):focus,
textarea:not(.v-field__input):focus,
select:not(.v-field__input):focus {
    border: 2px solid #00BF41;
    outline: none;
    box-shadow: 0 0 0 .25rem rgba(0,191,65,.20);
}

.v-field__input > input {
    border-width: 0 !important;
}

.v-field__input > input:focus {
    border-width: 0 !important;
}

.form-display-group {
    margin-bottom: 0.5rem;
}

.form-display-group .btn {
    margin-top: 1rem;
}

.joinforms-content h3 {
    color: #24242e;
    font-size: 1.9444444444444rem;
    font-weight: 800;
    font-family: 'Inter',sans-serif;
    line-height: 1.2em;
}

/** because there are spans in the h3's **/
.joinforms-content h3 span {
    font-size: inherit;
}

.joinforms-content select {
    color: #24242E;
    padding: 5px 15px;
    height: auto;
    border-width: 2px;
    border-style: solid;
    border-color: #24242E;
    border-radius: 0px;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
    line-height: 38px;
    font-size: 14px;
    width: 100%;
}

.joinforms-content input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #24242E;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: .2s;
    margin-top: 0;
}

.joinforms-content input[type="radio"]:checked {
    background: #24242E;
    border-color: #24242E;
}

.joinforms-content input[type="radio"]:checked::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .2s;
}

.joinforms-content .form-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.joinforms-content input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #24242E;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    background: #fff;
    flex-shrink: 0;
    margin-top: 0;
}

.joinforms-content input[type="checkbox"]:checked {
    background: #24242E;
    border-color: #24242E;
}

.joinforms-content input[type="checkbox"]:checked::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.joinforms-content #company,
.joinforms-content #mail_add,
.joinforms-content #header_type_service,
.joinforms-content #header_equip_op,
.joinforms-content #terminal_header,
.joinforms-content #header_key_ppl,
.joinforms-content #header_affiliate,
.joinforms-content #privacy:not([type="checkbox"])  {
    margin-top: 3rem;
}

.joinforms-content #company h3, .joinforms-content #company h3 span,
.joinforms-content #mail_add h3, .joinforms-content #mail_add h3 span,
.joinforms-content #header_type_service h3, .joinforms-content #header_type_service h3 span,
.joinforms-content #header_equip_op h3, .joinforms-content #header_equip_op h3 span,
.joinforms-content #terminal_header h3, .joinforms-content #terminal_header h3 span,
.joinforms-content #contact h3, .joinforms-content #contact h3 span,
.joinforms-content #password h3, .joinforms-content #password h3 span {
    color: #24242e;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Inter',sans-serif;
    line-height: 1.2em;
}