.fw-325 {
    font-weight: 325;
}

.fw-350 {
    font-weight: 350;
}

.form {
    background-color: #52676f;
    padding: 100px 0 120px 0;
}
@media (max-width: 991px) {
    .form {
        padding: 50px 0 50px 0;
    }
}

.form_content {
    max-width: 816px;
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
}

.form_sub {
    margin: 0 auto 44px auto;
    border-radius: 20px;
    background: #ee5e52;
    box-shadow: 0px 30px 60px 0px #395763;
    max-width: 816px;
    position: relative;
    z-index: 2;
    padding: 16px 16px 16px 16px;
}

.form-btn {
    display: block;
    line-height: 100%;
    text-align: center;
    max-width: 392px;
    color: #fff;
    font-family: Gotham, sans-serif;
    font-weight: 400;
    font-size: 24px;
    border-radius: 20px;
    background: #EE5E52;
    box-shadow: 0px 30px 60px 0px #395763;
    text-decoration: none;
    border: 1px solid transparent;
    padding: 30px 0;
    transition: ease all 0.4s;
}

.form-btn:hover {
    background: #f0f0f0;
    color: #000;
    border: 1px solid #EE5E52;
}

.form_title {
    font-size: 48px;
    max-width: 437px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .form_title {
        font-size: 36px;
        max-width: 437px;
    }
}

.form_sub_text {
    max-width: 650px;
    font-size: 24px;
    margin: 0 auto 0 auto;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    .form_sub_text {
        font-size: 18px;
    }
}

.form_input {
    padding: 16px 24px 16px 24px;
    width: 100%;
    border-radius: 16px;
    border: 1px solid #849ca5;
    background-color: #849ca5;
    color: #ffffff;
}
.form_input:focus {
    outline: none;
}
.form_input::placeholder {
    color: #ffffff;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: #f0f0f0;
    user-select: none;
    margin: 20px 0 0 0;
    width: 100%;
}

.custom-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 24px;
    max-width: 24px;
    background-color: #ee5e52;
    border: 2px solid #ffffff;
    border-radius: 4px;
    margin-right: 16px;
    cursor: pointer;
    box-sizing: border-box;
}

.checkmark::before,
.checkmark::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform-origin: center;
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.checkmark::before {
    transform: translate(-50%, -50%) rotate(45deg) scale(0.5);
}

.checkmark::after {
    transform: translate(-50%, -50%) rotate(-45deg) scale(0.5);
}

.custom-checkbox-label input[type="checkbox"]:checked ~ .checkmark::before {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.custom-checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}

.submit-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: center;
    margin: 40px 0 0 0;
    width: 100%;
    max-width: 195px;
}
@media (max-width: 991px) {
    .submit-button {
        margin: 0 0 0 0;
    }
}

.submit-button:hover {
    background-color: #f0f0f0;
}

.submit-button:active {
    transform: scale(0.98);
}

.form_disclaimer {
    max-width: 1240px;
    padding: 0 0 0 0;
    margin: 70px auto 0 auto;
}
@media (max-width: 991px) {
    .form_disclaimer {
        margin: 20px auto 0 auto;
        padding: 0 32px 0 31px;
    }
}
