@charset "utf-8";

:root {
    --primary-color: #0f172a;
    --accent-color: #3b82f6;
    --bg-auth: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: radial-gradient(circle at top right, #eff6ff, #f8fafc);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

.form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    border-color: var(--accent-color);
}

.btn-login {
    background-color: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    color: white;
}

.btn-google {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-google:hover {
    background-color: #f1f5f9;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    margin: 1.5rem 0;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider:not(:empty)::before { margin-right: .5em; }
.divider:not(:empty)::after { margin-left: .5em; }

.back-to-home {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-home:hover {
    color: #3b82f6;
    transform: translateX(-5px);
}

