main{
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url('/images/grid.png');
    background-position: center;
    background-size: contain;
}

.home-wrapper{
    max-width: 1600px;
    width: 100%;
}

section.auth-section{
    height: 100vh;
    position: relative;
    display: flex;
    min-height: 800px;
    width: 100%;
}

section.auth-section > .form-container{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container > form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form > .auth-type-switch{
    width: 100%;
    display: flex;
    border-bottom: 1px solid #fff;
    justify-content: space-between;
}

.auth-type-switch > div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-type-switch > div > label{
    padding: 10px 25px;
    position: relative;
    font-size: 20px;
    cursor: pointer;
}

.auth-type-switch > div > input{
    opacity: 0;
}

.auth-type-switch > div > input:checked + label::after{
    content: '';
    height: 2px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%);
}

section.auth-section > .auth-image-container{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-image-container > img{
    width: 70%;
}

.auth-section-bg{
    z-index: -2;
    height: 100vh;
    width: 100%;
    max-width: 1600px;
    position: absolute;
    background-image: url('/images/hero-bg-grafiti-stripes.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    min-height: 800px;
}

form > button[type="submit"]{
    margin-top: 15px;
    font-size: 18px;
}

.auth-section-bg-shadow{
    position: absolute;
    max-width: 1600px;
    z-index: 0;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    -webkit-box-shadow: inset -500px 0px 100px 382px rgba(28, 25, 23, 1);
    -moz-box-shadow: inset -500px 0px 100px 382px rgba(28, 25, 23, 1);
    box-shadow: inset -500px 0px 100px 382px rgba(28, 25, 23, 1);
}

.account-type-switch{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}

.account-type-switch > div{
    background-color: #252525;
    color: #7a7a7a;
    width: 100%;
    border-radius: 5px;
    padding: 0 5px;
    display: flex;
    justify-content: center;
}

.account-type-switch > div:has(> input:checked){
    color: #fff;
}

.account-type-switch > div > input{
    opacity: 0;
}

.account-type-switch > div > label{
    width: 100%;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
}

.message-span{
    text-align: center;
    max-width: 300px;
}

.forgot-pass-a:hover{
    color: #fa4149;
    text-decoration: underline;
}

@media(max-width: 1100px){
    section.auth-section > .auth-image-container{
        display: none;
    }
    section.auth-section > .form-container{
        width: 100%;
        padding: 20px;
    }
    .auth-section-bg-shadow{
        -webkit-box-shadow: inset 0px 0px 120px 200px rgba(28, 25, 23, 1);
        -moz-box-shadow: inset 0px 0px 120px 200px rgba(28, 25, 23, 1);
        box-shadow: inset 0px 0px 120px 200px rgba(28, 25, 23, 1);
    }
}

@media (max-width: 400px) {
    .auth-type-switch > div > label{
        font-size: 16px;
        padding: 10px 15px;
    }
}