body.login-page {
    background-color: #000;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    display: block !important;
    /* Override style.css flex centering */
    width: 100%;
}

.login-zone {
    background: linear-gradient(145deg, #1c212c 0%, #000000 100%);
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background-color: #12151c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 450px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect behind card */
.login-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.login-content {
    position: relative;
    z-index: 1;
}

.brand-logo {
    text-align: center;
    margin-bottom: 0.5rem;
}

.brand-logo img {
    max-height: 45px;
    width: auto;
}

.login-title {
    color: #a0aec0;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-control-custom {
    background-color: #1a1e26;
    border: 1px solid #2d3748;
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background-color: #222733;
    border-color: #4A5568;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
    color: #fff;
}

.input-group-text-custom {
    background-color: #1a1e26;
    border: 1px solid #2d3748;
    color: #64748b;
    border-radius: 12px;
}

.input-group-text-custom:first-child {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-left: 1.25rem;
}

.input-group-text-custom:last-child {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-right: 1.25rem;
}

.form-control-custom.with-icon {
    border-left: none;
    padding-left: 0.5rem;
}

.btn-login {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: #fff;
    font-weight: 700;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: #fff;
    background: linear-gradient(135deg, #34ce57 0%, #28a745 100%);
}

.btn-login:disabled {
    opacity: 0.7;
    transform: none;
}

.error-badge {
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #ef4444;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.creator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a4150 0%, #20242e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    border: 2.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05), 0 8px 30px rgba(0, 0, 0, 0.4);
    margin: 0 auto 1rem;
    overflow: hidden;
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-intro {
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.login-intro .creator-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.login-intro .intro-text {
    color: #8892a4;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}