/**
 * SeeThemPlay - Auth Styles
 */

:root {
    --primary: #e07c9a;
    --primary-dark: #c85a7a;
    --text: #3d3d3d;
    --text-light: #6b6b6b;
    --bg: #fdf8f9;
    --white: #ffffff;
    --error: #e74c3c;
    --success: #27ae60;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
}

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

body.auth-body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--bg) 0%, #fff5f7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
}

.auth-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
}

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

.auth-logo img {
    height: 80px;
    width: auto;
}

.auth-card h1 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 24px;
}

.user-email-display {
    background: var(--bg);
    padding: 12px 16px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* --- Form Styles --- */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input {
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group small {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
}

.btn:hover {
    background: var(--primary-dark);
}

.btn:active {
    transform: scale(0.98);
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--primary);
}

/* --- Alerts --- */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.alert-error {
    background: #fdf0f0;
    color: var(--error);
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #f0fdf4;
    color: var(--success);
    border: 1px solid #c6f5d0;
}

/* --- Links --- */
.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

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