/* Soft Pastel Aesthetic for Auth Pages */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --bg-color: #f0f4f8;
    --card-bg: #ffffff;
    --primary-soft: #a8e6cf; /* Soft Mint */
    --secondary-soft: #dcedc1; /* Soft Green */
    --accent-pink: #ffd3b6; /* Soft Peach/Pink */
    --accent-blue: #ffaaa5; /* Soft Salmon/Red-Pink - actually pretty nice with mint */
    --text-dark: #4a4a4a;
    --text-light: #888888;
    --input-bg: #f9f9f9;
    --input-border: #e0e0e0;
    --shadow-soft: 0 10px 25px rgba(168, 230, 207, 0.2);
    --radius-soft: 20px;
    --radius-button: 50px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: var(--text-dark);
}

.auth-container {
    background-color: var(--card-bg);
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease;
}

.auth-container:hover {
    transform: translateY(-5px);
}

.logo-area {
    margin-bottom: 2rem;
}

.logo-area img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

h1 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

p.subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--input-border);
    border-radius: var(--radius-soft);
    background-color: var(--input-bg);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-soft);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(168, 230, 207, 0.2);
}

.btn-auth {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-button);
    background: linear-gradient(to right, #a8e6cf, #dcedc1);
    color: #4a7c59;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(168, 230, 207, 0.4);
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 230, 207, 0.6);
    background: linear-gradient(to right, #98d6bf, #ccecb1);
}

.auth-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.auth-footer a {
    color: #ffaaa5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #ff8b85;
}

.message-box {
    padding: 1rem;
    border-radius: var(--radius-soft);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
}

.message-box.error {
    background-color: #fff0f0;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
    display: block;
}

.message-box.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    display: block;
}
