/* This file styles allauth template content */

#allauth-main {
    /* background: radial-gradient(ellipse at right bottom, #1a2f6b, #121a47); */
    background: white;
    background: radial-gradient(at right bottom, var(--light-gray), var(--federal-blue));
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    position: relative;
    min-height: calc(100vh - 8rem);
}

@media (min-width: 992px) {
    #allauth-main {
        margin-top: -10rem;
        padding-top: 3rem;
    }
}

#allauth-inner {
    background-color: white;
    max-width: 70rem;
    box-shadow: 2px 2px 5px var(--copy-gray);
    border-radius: 10px;
    z-index: 20;
}

@media (max-width: 576px) {
    #allauth-inner {
        background: #ffffffdd;
        max-width: 100vw;
        box-shadow: none;
    }
    #allauth-main {
        min-height: unset;
    }
}

#allauth-inner {
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 5rem;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    label {
        font-weight: 600;
    }

    form input[type=checkbox] {
        position: relative;
        left: 0;
        visibility: visible;
        width: 1.5rem;
        height: 1.5rem;
    }

    .errorlist {
        color: var(--federal-red);
    }

    button {
        overflow: hidden;
        position: relative;
        padding: 1.3rem 2rem 1rem;
        border-radius: 5px;
        font-size: 1.8rem;
        cursor: pointer;
        max-width: 35rem;
        white-space: normal;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        margin-right: 1rem;
    }

    button.active,
    button:active,
    button:focus,
    button:hover {
        box-shadow: var(--shadom-sm);
    }

    button {
        background: linear-gradient(to bottom, var(--light-blue-600), var(--light-blue));
        background-color: var(--light-blue-600);
        color: white;
    }

    button.active,
    button:active,
    button:focus,
    button:hover {
        background: linear-gradient(to bottom, var(--light-blue-600), var(--light-blue-600));
    }

    @media (min-width: 992px) {

        button.active,
        button:active,
        button:focus,
        button:hover {
            transform: translateY(-1px);
        }
    }
}


@media (max-width: 576px) {
    .fill-mobile-container {
        width: 100vw !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
}


/* ____ */
/* Specific template styles*/
/* ____ */

/* email_change.html */
#pending-email {
    display: none;
}