<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section .container{
	max-width: 900px;
	margin: 100px auto;
}
.reg-form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}

.reg-form .form-head h3 {
    color: #000;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.reg-form .form-head h2 {
    color: #000;
    font-family: Inter;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

label {
    color: #000;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

input,
input::placeholder,
select {
    color: #000 !important;
}

.form-fields{
	width:100%;
}


.form-control {
    border-bottom: 1px solid #CACACA !important;
    border-radius: 0 !important;
}

.submit-btn {
    padding: 10px 40px;
    width: fit-content;
    background: #E26639;
    color: #FFF !important;
    text-align: center;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
}

.form-check {
    display: flex !important;
    align-items: center;
    padding: 20px !important;
    border-bottom: 1px solid #CACACA;
}

.form-check-label {
    color: #000;
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}

/* .form-check-label::after {
    position: relative;
    content: "\1F589";
} */

/* .form-check .form-check-input {
    margin-left: 0;
} */


/* Media */
@media (max-width: 768px) {
    .reg-form {
        gap: 20px;
    }

    .reg-form .form-head h2 {
        font-size: 36px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    input,
    input::placeholder,
    select {
        color: #000 !important;
    }

    .form-control,
    .form-check-label {
        font-size: 18px;
    }

    .form-check {
        display: flex;
        align-items: center;
        padding: 21px 12px;
        gap: 15px;
        border-bottom: 1px solid #CACACA;
    }
}</pre></body></html>