@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul,
ul li {
    padding: 0;
    list-style: none;
    margin: 0;
}

a {
    text-decoration: none;
    transition: all 0.8s ease-in-out;
    cursor: pointer;
}

body {
    font-family: 'Urbanist', sans-serif;
}

button {
    transition: all 0.8s ease-in-out;
}
.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: 700 24px/30px 'Urbanist', sans-serif;
    color: #000000;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.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;
}

.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;
}

.for-dealers {
    position: relative;
    font: 400 14px/20px 'Urbanist', sans-serif;
    color: #757575;
    margin: 4px auto 0;
    text-align: center;
    min-width: 310px;
    text-transform: uppercase;
}

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

.for-dealers::before {
    left: 0;
}

.for-dealers::after {
    right: 0;
}

.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-btn-for-dealer {
    width: 100%;
    padding: 13px;
    background: transparent;
    font: 400 20px/26px 'Urbanist', sans-serif;
    color: #5F0052;
    text-transform: uppercase;
    border: 1px solid #5F0052;
    border-radius: 8px;
}
.auth-btn-for-dealer:hover{
    background: #5F0052;
    color: #FFFFFF;
}

.auth-input-main {
    width: 100%;
    padding: 16px 20px;
    color: #000000;
    font: 400 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: #686677;
}

.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: #000000 !important;
}

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

.auth-btn:hover {
    background: transparent;
    color: #5F0052;
}

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

.not-a-member a {
    color: #05309D !important;
    font: 600 18px/24px 'Urbanist', sans-serif !important;
}
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

}

@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;
    }
}