@import url('fonts/fonts.css');

.navbar {
    z-index: 1;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    background-image: url('Images/Backgrounds/PageBackground.png');
    background-size: 100%;
    /* Adjust width fully, height adjusts proportionally */
    background-repeat: no-repeat;
    /* Prevents tiling */
    background-position: center top;
    /* Aligns the image to the top center */
    background-color: #C1C9F4;
}

.Container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% 0;
}

.Content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
    /* Add slight transparency for layering effect */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #1f234f;
    font-family: 'Gendry', sans-serif;
}

.username,
.password {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
}

h1 {
    font-size: 3vw;
    font-weight: unset;
}

.username label,
.password label {
    font-size: 1.5vw;
    font-weight: unset;

}

.username input,
.password input {
    font-size: 2.5vw;
    border-radius: 50px;
    border: 2px solid #1f234f;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 2% 5%;
    margin-top: 3%;
}

h6 {
    font-size: 1vw;
    font-family: 'GothamBook', sans-serif;
    font-weight: 600;
}

.LoginButton {
    border: unset;
    color: #f9f9ef;
    background-color: #1f234f;
    font-family: 'GothamBook', sans-serif;
    font-weight: 600;
    font-size: 1.5vw;
    padding: 2% 20%;
    cursor: pointer;
}

.error {
    color: red;
}

@media (max-width: 1024px) {
    body {
        background-image: url('Images/Backgrounds/PageBackgroundPhone.png');
    }

    h1 {
        font-size: 6vw;
    }

    .username label,
    .password label {
        font-size: 3vw;
    }

    .username input,
    .password input {
        font-size: 5vw;
    }

    h6 {
        font-size: 2vw;
    }

    .LoginButton {
        font-size: 3vw;
    }

}