body, html {
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pageLogo {
    width: 250px;
    height: auto;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.container {
    display: flex; 
    flex-direction: column; 
    border-radius: 15px;
    padding: 50px 100px;
    background-size: cover;
    background-position: center;
    background-image: url('/img/Frosted-Glass-2.png');
}

.container h2 {
    font-size: 2em;
    color: #000088;
}

.container p {
    margin-top: 10px;
}

input, label {
    display: flex;
}

label {
    padding: 8px;
    font-size: 20px;
    font-weight: bold;
}

input {
    width: 92%;
    height: 28px;
    font-size: 18px;
    border-radius: 15px;
    padding: 3px 12px;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: #7D7D7D;
    font-size: 14px;
}

span {
    font-size: 14px;
    font-weight: bold;
    color: #7D7D7D;
}

.dataContainer {
    margin-bottom: 12px;
}

.loginBtn {
    width: 300px;
    height: 50px;
    margin-top: 5px;
    background-color: #000088;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 26px;
    cursor: pointer;
}

.signupLink:hover {
    text-decoration: underline;
}

.fa-solid {
    padding: 2px;
}

.loginLink {
    text-decoration: none;
    color: white;
    font-size: 28px;
}

.forgotPwdLink {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
}

.forgotPwdLink:hover {
    text-decoration: underline;
}

.create-account-container {
    display: flex;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .container {
        padding: 30px;
    }
    
    input {
        font-size: 16px;
    }
}

