html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Fustat, sans-serif;
    width: 100%;
    background-color: #F2F2F2;
}

header{
    background-color: #3333CB;
    color: white;
    font-family: "Fustat", sans-serif;
    font-size: 20px;
    padding: 15px;
    height: 70px; /* fixed height */
    margin: 0px 0px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px); /* full viewport height minus header height */
    width: 100%;
    flex-direction: column;
}

.container > h2,
.container > form {
    width: 100%;
}

.container > h2 {
    margin-bottom: 20px;
}

header{
    background-color: #3333CB;
    color: white;
    font-family: "Fustat", sans-serif;
    font-size: 20px;
    padding: 15px;
    height: 10%;
    margin: 0px 0px;
}

h2 {
    font-family: "Unbounded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: bold;
    font-size: 35px;
    letter-spacing: 0.5px;
    color: black;
    margin-bottom: 30px;
    text-align: left;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(176, 176, 176, 0.9);
    width: 100%;
    max-width: 400px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 15px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Fustat, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
    color: white;
}

.message-area {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    color: black;
}

.message-area.show {
    opacity: 1;
    transform: translateY(0);
}

.message-area.success {
    background-color: #e8f5e9;
    color: black;
}

.message-area.error {
    background-color: #e8f5e9;
    color: black;
}

.message-area.loading {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}


a{
    text-decoration: none;
    color: white;
    font-family: "Unbounded", sans-serif;
}