/* ==========================================================================
   JUNINOPRO - LOGIN SPECIFIC STYLES
   ========================================================================== */

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(circle at center, rgba(23, 42, 69, 0.8) 0%, rgba(10, 25, 47, 0.9) 100%),
        url("../img/FundoJuninoProH.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.login-card {
    width: 100%;
    max-width: 450px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.login-logo {
    display: block;
    margin: 0 auto 30px;
    max-height: 80px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-google {
    background: #ffffff !important;
    color: #444 !important;
    border: 1px solid #ddd !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    text-transform: none !important;
}

.btn-google:hover {
    background: #f8f8f8 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px);
}

.btn-google img {
    width: 20px;
    height: 20px;
}

.login-card input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.login-links {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
}

.login-links a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: color 0.2s;
}

.login-links a:hover {
    color: #fff;
}