.auth-main {
    position: relative;
    z-index: 1;
    margin: 0 0 40px;
}

.auth-outer-box {
    border: 1px solid var(--G300, #CBCAD7);
    background: #FFFFFF;
    max-width: 511px;
    margin: 16px auto 0;
    padding: 35px 43px;
    text-align: center;
    border-radius: 7px;
}

.auth-heading {
    font: 600 24px/30px 'Urbanist', sans-serif;
    color: #000000;
    padding-bottom: 5px;
}

.auth-note {
    font: 400 16px/22px 'Urbanist', sans-serif;
    color: #000000;
    padding: 0 0 18px;
}

.auth-button-box,
.auth-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 11px;
}

.auth-form {
    gap: 16px;
    flex-direction: column;
}

.auth-button-box button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 7px 0;
    font: 500 14px/20px 'Urbanist', sans-serif;
    border-radius: 7px;
    text-transform: uppercase;
}

.auth-btn-icon {
    width: 26px;
    height: 26px;
}

.google-btn {
    border: 1px solid var(--G300, #CBCAD7);
    background: #FFFFFF;
    color: #000000;
}

.apple-btn {
    border: 1px solid #000000;
    color: #FFFFFF;
    background: #000000;
}

.facbook-btn {
    border: 1px solid #1C72FA;
    color: #FFFFFF;
    background: #1C72FA;
}

.other-option {
    position: relative;
    font: 400 14px/20px 'Urbanist', sans-serif;
    color: #757575;
    margin: 16px auto;
    text-align: center;
    max-width: 240px;
}

.other-option::before,
.other-option::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 102px;
    height: 1px;
    background: #7A7A7A;
}

.other-option::before {
    left: 0;
}

.other-option::after {
    right: 0;
}

.auth-input-main {
    width: 100%;
    padding: 16px 20px;
    color: #000000;
    font: 500 16px/22px 'Urbanist', sans-serif;
    border-radius: 6px;
    border: 1px solid var(--G300, #CBCAD7);
    box-sizing: border-box;
}

.auth-input-main:focus-visible {
    outline: none;
    box-shadow: none;
}

.auth-input-main::placeholder {
    color: #adadad;
}

.password-field {
    width: 100%;
    position: relative;
}

#passwordIcon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Check Box */
.custom-checkbox-auth {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.custom-checkbox-auth input {
    display: none;
}

.checkmark {
    min-width: 16px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    position: relative;
    transition: 0.3s;
    border: 0.78px solid #00000040;
}

.custom-checkbox-auth input:checked+.checkmark {
    background: #5F0052;
    border: 1px solid #5F0052;

}

.custom-checkbox-auth input:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: 1px solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font: 400 12px/18px 'Urbanist', sans-serif;
    text-align: left;
    color: #000000;
}

.checkbox-text a {
    text-decoration: underline;
    color: #05309D !important;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    background: #1C1C1C;
    font: 600 20px/26px 'Urbanist', sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    border: 1px solid #1C1C1C;
    border-radius: 8px;
    margin: 8px 0 0;
}

.auth-btn:hover {
    background: transparent;
    color: #1C1C1C;
}

.not-a-member {
    font: 500 18px/24px 'Urbanist', sans-serif;
    color: #000000;
}

.not-a-member a {
    font: 600 18px/24px 'Urbanist', sans-serif !important;
    color: #05309D !important;
}

.Forgot-Password {
    color: #05309D;
    font: 600 16px/22px 'Urbanist', sans-serif;
}

.car-details-box-auth {
box-shadow: 0px 0px 2px 0px #00000026;
margin: 6px 0 24px;
padding: 9px 14px;
display: flex;
gap: 30px;
align-items: center;
background: #FFFFFF;
border-radius: 7px;
}
 
.car-image-on-auth {
width: 100%;
max-width: 110px;
height: 60px;
object-fit: contain;
}

.car-collected-data-on-auth {
    text-align: left;
}

.car-name-auth {
    font: 700 18px/24px 'Urbanist', sans-serif;
    color: #000000;
    padding: 0 0 4px;
}

.trim-number-auth {
    font: 400 14px/20px 'Urbanist', sans-serif;
    color: #757575;
    padding: 0 0 4px;
}

.vehicle-data-auth {
    font: 700 12px/18px 'Urbanist', sans-serif;
    color: #000000;
}

@media (max-width:575px) {
    .auth-outer-box {
        border: none;
        background: #FFFFFF;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .checkbox-text {
        font: 400 9px/15px 'Urbanist', sans-serif;
    }

    .auth-button-box {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }

    .auth-button-box button {
        width: auto;
        display: inline-flex;
        padding: 7px;
    }

    .auth-button-box button span {
        display: none;
    }

    .auth-note {
        font: 400 14px/20px 'Urbanist', sans-serif;
        padding: 0 0 16px;
    }

    .not-a-member , .not-a-member a  {
        font: 500 16px/22px 'Urbanist', sans-serif !important;
    }
    .car-image-on-auth {
    max-width: 97px;
    height: 46px;
}
.car-details-box-auth {
    box-shadow: 0px 0px 2px 0px #00000026;
    margin: 0 0 16px;
    padding: 9px 14px;
    gap: 10px;
}
.auth-main {
    margin: 0 0 ;
}
}

@media (max-width:425px) {

    .auth-note {
        font: 400 12px/18px 'Urbanist', sans-serif;
        padding: 0 0 16px;
    }
}

@media (max-width:375px) {

    .car-name-auth {
        font: 700 14px / 20px 'Urbanist', sans-serif;
    }

    .trim-number-auth {
        font: 400 10px / 16px 'Urbanist', sans-serif;
    }
}