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

.login-container {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: #2f6fed;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #2559be;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.field-header label {
    margin: 0;
}

.forgot-password {
    padding: 0;
    border: 0;
    background: transparent;
    width: auto;
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: normal;
    cursor: pointer;
}

.forgot-password:hover {
    text-decoration: underline;
    background: transparent;
}

.error {
    margin-bottom: 1.5rem;
    padding: 0.9rem 1rem;

    border: 1px solid #fecaca;
    border-radius: 8px;

    background: #fef2f2;
    color: #991b1b;

    font-size: 0.95rem;
    line-height: 1.5;
}

.success {
    margin-bottom: 1.5rem;
    padding: 0.9rem 1rem;

    border: 1px solid #bbf7d0;
    border-radius: 8px;

    background: #f0fdf4;
    color: #166534;

    font-size: 0.95rem;
    line-height: 1.5;
}

.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
}
