/* Dinky Promise Auth Pages - White/Orange Theme */

.auth-branding-panel {
    background: linear-gradient(135deg, #0C0C0C 0%, #1A1A1A 50%, #0C0C0C 100%);
    position: relative;
    overflow: hidden;
}

.auth-branding-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.10) 0%, transparent 60%);
    animation: pulse-glow 8s ease-in-out infinite;
}

.auth-branding-panel::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.ps-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6A00, #FF8C33);
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.35);
}

.branding-text {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #FF6A00, #FF8C33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6A00, #FF8C33);
    border-radius: 2px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 106, 0, 0.30);
    transform: translateY(-2px);
}

.form-control.form-control-solid:focus {
    border-color: #FF6A00;
    box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.12);
}

@media (max-width: 991.98px) {
    .auth-branding-panel {
        min-height: 250px;
    }
    .branding-text {
        font-size: 2.5rem;
    }
}
