.authentication-dialog {
    align-items: center;
    justify-content: center;
}

the-authentication {
    flex: 0 0 auto;
    max-width: 24rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    gap: 2rem;
    border: 1px solid rgba(var(--primary-rgb), .5);
    background: rgba(0, 0, 0, .75);
    border-radius: .25rem;
    position: relative;
    backdrop-filter: blur(1rem);
    box-shadow: 0px .25rem 1rem 0 rgb(0 0 0 / 50%), inset 0 0 2rem 0 rgba(var(--primary-rgb), calc(var(--glow-intensity) / 3));
}

the-authentication > svg {
    width: 8rem;
    align-self: center;
}
the-authentication > svg .st0 {
    fill:var(--primary-color);
}
the-authentication > svg .st1{
    fill: var(--input-color);
}
the-authentication h2 {
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

the-authentication div.divider {
    flex: 0 0 1px;
    border: 1px solid rgba(var(--primary-rgb), .25);
}

the-authentication .login-option-section, the-authentication .google-section {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: .5rem;
}
the-authentication .login-option-section div {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: .5rem;
}

the-authentication .login-option-section, the-authentication .otp-login-section {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
}

the-authentication .login-option-section h3, the-authentication .google-section h3 {
    color: var(--secondary-color);
    margin: 0;
    padding: 0;
    font-weight: 600;
}

the-authentication .otp-login-section.redeem {
    display: none;
}

the-authentication.redeem-otp .otp-login-section.request {
    display: none;
}
the-authentication.redeem-otp .otp-login-section.redeem {
    display: flex;
}

the-authentication button {
    /* align-self: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    cursor: pointer;
    padding: .5rem 1rem;
    border: .15rem solid var(--primary-color);
    border-radius: .45rem;
    perspective: 1.5rem;
    font-size: 1rem;
    font-weight: 800;
    gap: .5rem;
    text-transform: uppercase;
    text-shadow: 0 .5rem 1.5rem rgba(var(--secondary-rgb), var(--glow-intensity));
    box-shadow: inset 0 0 .5em 0 rgba(var(--primary-rgb), var(--glow-intensity)), 0 0 .5em 0 rgba(var(--primary-rgb), var(--glow-intensity));
    text-decoration: none;
    background: rgba(0, 0, 0, .5);
}

the-authentication button svg {
    height: 1.5rem;
}

/* Removed redundant .email-input style (covered by base.css) */

the-authentication .email-input::placeholder {
    color: var(--primary-color);
    font-style: italic;
    opacity: .75;
}

/*********** MEDIA QUERIES START HERE ***********/
@media only screen and (max-width: 720px) {
    .the-authentication-dialog {
        padding: .5rem;
    }
    
    the-authentication {
        padding: 1rem;
        gap: 1rem;
        margin: 1rem;
    }
}
/*********** MEDIA QUERIES END HERE ***********/
