/* ===== Auth Pages (Login / Register) ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6f9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.auth-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 36px 32px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo h1 {
    color: #2f5bea;
    font-size: 26px;
    letter-spacing: 0.5px;
}

.auth-logo span {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #2f5bea;
}

.btn-primary {
    width: 100%;
    padding: 11px;
    background: #2f5bea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #2447c4;
}

.auth-footer {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #555;
}

.auth-footer a {
    color: #2f5bea;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.alert {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 18px;
}

.alert-error {
    background: #fdeceb;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #eafaf1;
    color: #1e8449;
    border: 1px solid #b7ebc6;
}
