body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.login-section{
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-container{
    min-width: 300px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}


.login_form {
    width: 100%;
    min-height: 350px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;
    text-align: center;
    background-color: #ffffff87;
    padding: 1.5rem;
    border-radius: 10px;
    color: #333;
    box-shadow: 0px 0px 20px #00000075;
}