/* /css/styles.css */
:root {
    --primary-blue: #2d5a96;
    --primary-orange: #f26522;
    --bg-light: #f4f7f6;
    --text-main: #333333;
    --text-muted: #6c757d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
}

/* Auth Container (Login, Forgot, Reset) */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a365d 100%);
    padding: 20px;
}

.auth-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.auth-box h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.auth-box p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.btn-submit {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #d1551a;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.auth-links {
    margin-top: 20px;
    font-size: 13px;
}

.auth-links a {
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
}

.auth-links a:hover {
    text-decoration: underline;
}

.alert-box {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}