/* Set up the page with Flexbox centering */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header {
    background-color: #3c2677; /* Purple bar */
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    width: 350px;
    text-align: left;
}

.header h2 {
    margin: 0;
    font-size: 20px;
}

.login-box {
    width: 350px;
    border: 1px solid #ccc;
    background-color: #faf5ee; /* Light beige */
    padding: 20px;
}

.login-box h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 6px;
    margin-bottom: 15px;
    border: 1px solid #aaa;
    box-sizing: border-box;
}

.button-group {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 5px 10px;
    border: 1px solid #333;
    background-color: #f2f2f2;
    cursor: pointer;
}