/* ------------------ FLEX CONTAINER ------------------ */
.content {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.flex-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    width: 100%;
}

.flex-item {
    flex: 1;
    /* padding: 0;
    margin: 0; */
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

/* -------------- FORMS -------------- */
#login,
#createNewAccount {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.formContainer {
    background-color: var(--colour-background-translucent);
    border-radius: var(--radius-md);
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#loginForm,
#newAccountForm {
    max-width: 80%; 
    align-items: center;
}

input {
    margin: auto auto var(--spacing-md) auto;
}

label {
    width: 100%;
}

.matchingLabel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.matching {
    display: none;
    color: var(--colour-invalid);
    justify-self: end;
}

/* -------------- BACKGROUND AND CONTAINERS -------------- */
.background {
    background-image: url("../res/img/Backgrounds/title_background.jpg");
    background-repeat: no-repeat;
    background-position: start;
    background-size: cover;
}

/* later on - add media queries for mobile? as or right now, everything is for desktop */