body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fcf8ec;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    margin: 50px auto;
}

/* Inherits .login-wrapper from index.css, just add custom padding/margins if needed */
.login-wrapper {
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ba1010; /* Unified Red label */
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ba1010; /* Unified Red borders */
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #f8be2c; /* Unified Yellow focus */
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #ba1010;
    color: white;
    border: 1px solid #ba1010;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background-color: white;
    color: #ba1010;
}

.links {
    margin-top: 25px;
    font-size: 0.95rem;
}

.links a {
    color: #ba1010;
    text-decoration: none;
    font-weight: 600;
}

.links a:hover {
    text-decoration: underline;
}

