﻿/* ClariFolio Auth Theme */
:root {
    --auth-bg: #f8f9fa;
    --theme-dark: #212529;
    --theme-accent: #0d6efd;
}

body {
    background-color: var(--auth-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 15px;
}

.auth-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    padding: 40px;
    text-align: center;
}

.auth-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--theme-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.auth-title {
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.form-floating > .form-control:focus ~ label {
    color: var(--theme-accent);
}

.form-control:focus {
    border-color: var(--theme-dark);
    box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.1);
}

/* Primary Action Button (Dark) */
.btn-auth-primary {
    background-color: var(--theme-dark);
    color: white;
    font-weight: 600;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    transition: all 0.2s;
}

    .btn-auth-primary:hover {
        background-color: black;
        color: white;
        transform: translateY(-1px);
    }

/* Social Login Divider */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #adb5bd;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #dee2e6;
    }

    .auth-divider::before {
        margin-right: 10px;
    }

    .auth-divider::after {
        margin-left: 10px;
    }

/* Google Button (Moved Down) */
.btn-google {
    background-color: white;
    color: #333;
    border: 1px solid #dee2e6;
    font-weight: 500;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

    .btn-google:hover {
        background-color: #f8f9fa;
        border-color: #c1c9d0;
    }

.auth-footer {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #6c757d;
}

    .auth-footer a {
        color: var(--theme-accent);
        text-decoration: none;
        font-weight: 600;
    }

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