﻿.login-page {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top,#1a1a1a,#000);
}

/* CARD */

.login-card {
    width: 420px;
    background: #0f0f0f;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,.6), 0 0 20px rgba(212,175,55,.2);
}

/* LOGO */

.logo {
    width: 80px;
    margin-bottom: 10px;
}

.logo-area h2 {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-area p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 30px;
}

/* GOOGLE BUTTON */

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: #333;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

    .google-btn img {
        width: 20px;
    }

    .google-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,.25);
    }

/* FOOTER */

.login-footer {
    margin-top: 25px;
    font-size: 12px;
    color: #888;
}

.login-page {
    background: linear-gradient(rgba(0,0,0,.9),rgba(0,0,0,.9)), url('/images/barber-bg.jpg');
    background-size: cover;
}