.login-container {
    height: max(75vh, 30em);

    padding-top: var(--padding-top-header);
}



/* Profile Page */

.content-users {
    padding-top: var(--padding-top-header);
}

.profile-div {
    padding: 0.5em;
    width: min(600px, 95%);
    margin: 1.25em auto;

    display: flex;
    flex-direction: column;
    gap: 1em;
}

.profile-div .page-title {
    margin: 0;
}

.profile-div .data-div {
    display: grid;
    grid-template-columns: 100%;
    gap: 1em;
}

.profile-div .data-div .data {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-div .data-div .data p,
.profile-div .data-div .data h3 {
    margin: 0;
}





@media only screen and (min-width: 100px) and (max-width: 325px) {

    

}



@media only screen and (min-width: 370px) {

    .profile-div .data-div {
        grid-template-columns: 50% 50%;
    }
    
}



@media only screen and (min-width: 800px) {

    
    
}