/* Base Auth styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
}

/* Global styles pentru forms */
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Auth header */
.auth-simple-header {
    background: #1f2937;
    color: white;
    padding: 1rem 0;
}

.auth-simple-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.auth-simple-header a {
    color: white;
    text-decoration: none;
}

.auth-simple-header h1 {
    margin: 0;
    font-size: 1.8rem;
}

/* Messages */
.auth-messages {
    max-width: 500px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.auth-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.auth-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.auth-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.auth-message.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.auth-message.info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* Auth footer */
.auth-simple-footer {
    background: #111827;
    color: #d1d5db;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
