/* ==========================================================================
   Login Page Styles — BuhaVoice Minimax
   Previously inline in render_login_page()
   ========================================================================== */

.buhavoice-login-wrapper {
    min-height: 100vh;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.buhavoice-login-card {
    background: #171717;
    border-radius: 24px;
    padding: 50px 45px;
    text-align: center;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid #C4C4C43B;
    position: relative;
    overflow: hidden;
}

.buhavoice-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff00, #ffaa40, #9c40ff);
    animation: buhaLoginGlow 3s ease-in-out infinite;
}

@keyframes buhaLoginGlow {
    0%, 100% { transform: translateX(-30%); }
    50% { transform: translateX(30%); }
}

.buhavoice-login-logo {
    width: 180px;
    margin: 0 auto 24px;
    display: block;
}

.buhavoice-login-title {
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #ffaa40, #9c40ff, #ffaa40);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    animation: gradient-move 2s ease-in-out infinite;
}

.buhavoice-login-subtitle {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.buhavoice-login-btn-wrap {
    margin-bottom: 20px;
}

.buhavoice-login-btn-wrap .foxtool-google a,
.buhavoice-login-btn-wrap a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff !important;
    color: #333 !important;
    padding: 5px 15px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    margin: 0 !important;
}

.buhavoice-login-btn-wrap .foxtool-google a:hover,
.buhavoice-login-btn-wrap a:hover {
    background: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

.buhavoice-login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: #555;
    font-size: 13px;
}

.buhavoice-login-divider::before,
.buhavoice-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.buhavoice-login-pricing {
    color: #ffffff;
    font-size: 13px;
}

.buhavoice-login-pricing strong,
.buhavoice-login-pricing a {
    background: linear-gradient(90deg, #ffaa40, #9c40ff, #ffaa40);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    animation: gradient-move 2s ease-in-out infinite;
    text-decoration: none;
}

.buhavoice-login-error-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 80, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.buhavoice-login-contact {
    margin-top: 20px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.buhavoice-login-contact a {
    color: #00ff87;
    text-decoration: none;
    font-weight: 600;
}
