.auth-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-login,
.btn-signup {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: bold;
    padding: .2rem 3rem;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
}

.btn-auth.active {
    color: white;
    background-color: var(--primary-color);
}

.auth-form input::placeholder {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--light-gray);
}

.auth-form input:not([type="checkbox"]):not([type="submit"]) {
    border: 1.5px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: .6rem;
    padding: .4rem .6rem;
    color: var(--text-gray);
    font-family: 'Roboto';
}

.auth-form-submit {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0;
}

.auth-form-field {
    width: 100%;
    margin-bottom: .2rem;
}

.auth-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: .3rem .8rem;
    margin: 1rem 0;
    border: 1.5px var(--primary-yellow) solid;
    border-radius: 20px;
    outline: none;
    font-weight: bold;
    cursor: pointer;
}

.auth-register {
    margin: 2rem 0;
}

.t_and_c {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 300;
    padding-left: .2rem;
}

.auth-form-submit {
    transition: transform 0.3s ease;
}

.auth-form-submit:active {
    transform: scale(0.9);
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1.5px solid var(--primary-color);
    border-radius: 2px;
    background-color: #FFFFFF;
    cursor: pointer;
    transform: translateY(2px);
}

input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    position: relative;
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 9px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 1px;
    left: 4px;
}

.login-google {
    display: flex;
    width: 100%;
    background-color: transparent;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--primary-color);
    padding: .5rem 0;
    margin: 2rem 0 6rem 0;
    border-radius: 10px;
    gap: .4rem;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--light-gray);
    cursor: pointer;
}

.ggl-svg {
    height: 24px;
    width: 24px;
}

.forgot-pw-subheading {
    text-align: center;
}


.forgot-pw-heading,
.forgot-pw-subheading,
#forgot-pw-btn {
    font-family: 'Nunito', sans-serif;
    color: var(--text-gray);
}

.forgot-pw-heading {
    margin: 4rem 0 4rem 0;
    text-align: center;
    font-size: 24px;
}

.text-or {
    font-family: 'Nunito', sans-serif;
    color: var(--light-gray);
}

#forgot-btn {
    font-family: 'Nunito', sans-serif;
    color: var(--light-gray);
}

#forgot-pw-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: .3rem .8rem;
    margin: 1rem 0;
    border: 1.5px var(--primary-yellow) solid;
    border-radius: 20px;
    outline: none;
    font-weight: bold;
    cursor: pointer;
}

.password-container {
    height: 60vh;
}

.pw-label {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: var(--light-gray);
}

.pw-input input {
    max-width: 250px;
    padding: .1rem .5rem;
    margin: .5rem auto;
    font-family: 'Nunito', sans-serif;
    color: var(--text-gray);
    border: 1.5px solid var(--primary-color);
    border-radius: 5px;
}

.forgot-pw-form {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forgot-pw-form label {
    display: none;
    visibility: hidden;
    opacity: 0;
}

#id_email {
    border: 1.5px solid var(--primary-color);
    border-radius: 10px;
    padding: .1rem .5rem;
    font-family: 'Nunito', sans-serif;
}

#id_email::placeholder {
    font-family: 'Nunito', sans-serif;
}

.email-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.email-info-container p {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: var(--light-gray);
}

.email-info-header {
    font-size: 42px;
    font-family: 'Nunito', sans-serif;
    color: var(--text-gray);
}

.email-info-container a {
    color: var(--primary-color);
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
}


@media screen and (min-width:992px) {
    .auth-form {
        width: 50%;
        margin: 0 auto;
    }
}
