body.login-page {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.login-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}
.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
}
h3 {
    color: #333;
}
.input-group {
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}
label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
}
input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}
.input-icon {
    position: absolute;
    left: 12px;
    top: 38px;
    color: #777;
}
.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}
.forgot-password a {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}
.login-button {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.login-button:hover {
    background-color: #0055aa;
}
.error-message {
    color: red;
    margin-bottom: 15px;
    display: none;
}
.field-error {
    color: red;
    font-size: 14px;
    margin-top: 4px;
}
.msg-list { list-style: none; padding: 0; margin: 0 0 15px; }
.msg { padding: 10px; border-radius: 4px; background: #f5f5f5; }