/* assets/css/Index.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f2f5;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

h1 {
    color: #1a365d;
    margin-bottom: 2rem;
    font-size: 1.8em;
    text-align: center;
}

.form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #2d3748;
    margin-bottom: 2rem;
    font-size: 1.5em;
    text-align: center;
}

form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

form input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
}

.remember-me input {
    margin: 0;
    width: auto;
}

.forgot-password {
    color: #4299e1;
    text-decoration: none;
    font-size: 0.9em;
}

.forgot-password:hover {
    text-decoration: underline;
}

button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: #4299e1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: #3182ce;
}

.form-container p {
    text-align: center;
    color: #4a5568;
    margin: 1.5rem 0 0;
}

.form-container a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.form-container a:hover {
    text-decoration: underline;
}

.alert-error {
    background: #fff5f5;
    color: #c53030;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid #fc8181;
    text-align: center;
    font-size: 0.9em;
}