/* Premium Auth Module CSS */
:root {
    --bg-auth: #0a0c10;
    --auth-card-bg: #111418;
    --auth-border: rgba(255, 255, 255, 0.08);
}

body.auth-wrapper {
    background-color: var(--bg-auth) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.auth-card {
    background: var(--auth-card-bg);
    border: 1px solid var(--auth-border);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-logo-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(var(--primary-rgb, 212, 175, 55), 0.1);
    border: 2px solid var(--primary, #d4af37);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.auth-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-logo-box i {
    font-size: 30px;
    color: var(--primary, #d4af37);
}

.auth-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.auth-subtitle {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary, #d4af37);
    background: rgba(var(--primary-rgb, 212, 175, 55), 0.05);
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb, 212, 175, 55), 0.1);
}

.btn-auth-submit {
    width: 100%;
    background: var(--primary, #d4af37);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-auth-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb, 212, 175, 55), 0.4);
    filter: brightness(1.1);
}

.btn-auth-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-session {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-left: 4px solid #f59e0b;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-size: 13px;
}

.btn-force {
    background: #f59e0b;
    color: #000;
    border: none;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
}

.btn-force:hover {
    filter: brightness(1.1);
}

.password-toggle-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.btn-password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    z-index: 5;
    transition: 0.2s;
}

.btn-password-toggle:hover {
    color: var(--primary, #d4af37);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
}

.auth-footer a {
    color: #64748b;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: 0.2s;
}

.auth-footer a:hover {
    color: #fff;
}