body {
    background-color: #004080;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.login-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 320px;
}

.login-container img {
    width: 50px;
    margin-bottom: 10px;
}

.inputbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.inputbox label {
    font-size: 14px;
    margin-bottom: 5px;
}

.inputbox input {
    width: 95%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 4px;
    font-size: 16px;
}

.login-container button {
    background-color: #f8b400;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.login-container button:hover {
    background-color: #e09b00;
}

.alert {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}
