/* assets/css/style.css */
:root {
    --club-azul: #101c32;   
    --club-amarillo: #f4b618; 
}

body {
    background-color: #f4f6f9;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-card {
    background-color: var(--club-azul);
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.logo-container {
    background-color: var(--club-azul);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 4px solid var(--club-amarillo);
}

.logo-container img {
    width: 160px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.btn-google {
    background-color: white;
    color: #444;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-google:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.text-amarillo {
    color: var(--club-amarillo) !important;
}