
main,
.conatiner{
    display: flex;
}

main{
    flex-direction: row-reverse;
}

.container{
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem;
}

.text-highlight{
    color: var(--primary-dark-color);
    font-weight: bold;
    text-decoration: none;
}

.center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-container{
    background-color: var(--primary-color);
    width: 30%;
    color: white;

    .description,
    .image-section,
    .image-section>.background{
        flex-direction: column;
    }

    .header-logo{
        margin-bottom: 3rem;

        .logo{
            font-size: 20px;
            font-weight: 700;
        }
    }

    .description{
        .main-text{
            font-size: 20px;
            font-weight: 600;
            width: 70%;
            text-align: center;
        }

        .secondary-text{
            font-size: 15px;
            font-weight: 300;
            margin-bottom: 10px;
        }
    }

    .image-section{
        position: relative;
        aspect-ratio: 1/1;
        
        .background{
            position: absolute;
            width: 80%;
            height: 70%;
            border-radius: 50%;
            background-color: var(--light-color);
            z-index: 0;
            box-shadow: 1px 1px 30px white
        }
        
        .avatar{
            width: 100%;
            z-index: 1;
        }
    }
}

@media (max-width:1024px) and (min-width:550px){
    main{
        flex-direction: column;
    }

    .container{
        width: 100%;
        min-height: fit-content;
    }

    .details-container{
        padding: 1rem;

        .image-section{
            display: none;
        }
    }
}

@media (max-width:550px){
    main{
        flex-direction: column;
    }
    
    .container{
        width: 100%;
        min-height: fit-content;
        font-size: 0.7rem;
    }

    .details-container{
        padding: 1rem;

        .image-section{
            display: none;
        }
    }
        

    .login-container{
        .heading-description{
            text-align: center;
        }

        .container-form{
            margin-bottom: 2rem;

            .form-items,
            .show-password-box,
            .btn-register,
            .sign-in-box{
                width: 100%;
            }
        }

        .footer{
            font-size: 0.7rem;
        }
    }
}

@media (min-height:1000px){
    body {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    

    .container{
        min-height: fit-content;
    }
}