/* auth.css - Auth page styles matching mobile app */

.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
}

.auth-brand {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--btn-service);
    text-align: center;
    margin-bottom: 0.25rem;
}

.auth-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Auth buttons - shared styles */
.btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-auth:hover {
    transform: translateY(-1px);
}
.btn-auth:active {
    transform: translateY(0);
}

/* Apple button - white background */
.btn-apple {
    background: #fff;
    color: #000;
}
.btn-apple:hover {
    background: #f5f5f5;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Google button - cream/white background */
.btn-google {
    background: #f5f5f0;
    color: #333;
}
.btn-google:hover {
    background: #eeeee8;
    color: #333;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Email button - dark background */
.btn-email {
    background: #2a2a2a;
    color: #fff;
    border: 1px solid #3a3a3a;
}
.btn-email:hover {
    background: #333;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Email form - hidden by default */
.email-form-container {
    display: none;
    margin-top: 1rem;
}
.email-form-container.show {
    display: block;
}

/* Form inputs */
.auth-card .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    font-size: 1rem;
}
.auth-card .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--btn-service);
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.2);
    color: var(--text-primary);
}
.auth-card .form-control::placeholder {
    color: var(--text-secondary);
}

/* Submit button in email form */
.btn-submit {
    background: var(--btn-service);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.875rem;
    font-weight: 600;
    width: 100%;
}
.btn-submit:hover {
    background: var(--btn-service-hover);
    color: #fff;
}

/* Links - teal color */
.auth-card a {
    color: var(--btn-service);
    text-decoration: none;
}
.auth-card a:hover {
    color: var(--btn-service-hover);
    text-decoration: underline;
}

/* Footer text */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Error alert */
.auth-card .alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    color: #ff6b6b;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
}

/* Button spacing */
.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
