.container{
    background-color: var(--cream);
    min-height: 100vh;
    
    display: flex;
}

aside{
    width: 100%;
    height: 100%;
    display: none;
    background-color: var(--text);
    padding: 6rem 4rem;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    & .logo{
        color: #fff;
    }
    

    &::before,
    &::after{
        content: "";
        display: block;
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(139, 26, 43, 0.32) 0%, transparent 65%);
        pointer-events: none;
        z-index: 0;
    }

    &::after{
        top: -100px;
        right: -100px;
    }

    &::before{
        bottom: -100px;
        left: -100px;
    }
}

.aside_header{
    & h2 {
        font-family: contrast;
        color: #fff;
        font-weight: 900;
        font-size: clamp(1.6rem, 2.6vw, 2.2rem);
        line-height: 1.12;
        letter-spacing: -0.03em;
        margin-bottom: .5rem;

        & em{
            color: var(--cherry);
            font-family: inherit;
        }
    }

    & p{
        font-size: 0.88rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.6;
        max-width: 300px;
        text-align: left;
    }
}

main{
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    
    & .heavy_button{
        margin: 1rem 0;
        font-weight: 800;
    }
    
    @media (width > 670px) {
        max-width: 500px;
    }
}

.logo{
    font-size: 3rem;
    font-family: logo;
}

.input_wrap{
    position: relative;
}

.main_header{

    & h1{
        font-family: contrast;
        font-weight: 900;
        font-size: clamp(1.9rem, 5vw, 2.5rem);
        line-height: 1.1;
        letter-spacing: -0.03em;
        margin-bottom: 8px;

        & em{
            font-family: inherit;
            color: var(--cherry);
        }
    }

    & p{
        text-align: start;
        font-size: 0.88rem;
        font-weight: 300;
        line-height: 1.5;
    }
}

.main_div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 400;
    gap: 20px;
    align-items: center;

    &::before,
    &::after{
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }
}

.register_opts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.opt{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    text-decoration: none;

    & img{
        width: 1rem;
        aspect-ratio: 1/1;
    }

    &:hover {
        border-color: rgba(139, 26, 43, 0.35);
        box-shadow: 0 4px 16px rgba(139, 26, 43, 0.08);
        transform: translateY(-1px);
    }
}

.login_redirect{
    font-size: 0.84rem;
}

p {
    color: var(--muted);
    font-size: 0.72rem;
    text-align: center;
    line-height: 1.5;
}

a {
    color: var(--cherry);
    font-weight: 600;
}

@media (width > 670px) {
    body{
        overflow: hidden; /* TEMPORALLY */
    }

    .container{
        display: grid;
        place-items: center;
        grid-template-columns: 1fr 1fr;
        width: 100vw;
    }

    aside{
        display: flex;
    }

    main{
        & .logo{
            display: none;
        }
    }
}