/* ===== TELA DE LOGIN MODERNA - CSS ===== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden; /* Apenas horizontal */
    overflow-y: auto; /* Permitir scroll vertical */
}

/* Background Animado - Mais sutil */
.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(203, 213, 225, 0.08);
    backdrop-filter: blur(10px);
    animation: float 20s infinite ease-in-out;
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: -10s;
}

.bg-shape-3 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-60px) rotate(240deg); }
}

/* Partículas */
.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(203, 213, 225, 0.4);
    border-radius: 50%;
    animation: particleMove 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes particleMove {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* Container Principal */
.login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 8vh; /* Card mais para cima */
    padding-bottom: 20px; /* Espaço no final para scroll */
}

/* Header do Login */
.login-header {
    text-align: center;
    margin-bottom: 20px; /* Reduzido de 30px */
}

.logo-container {
    margin-bottom: 15px; /* Reduzido de 20px */
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #2c4875, #1e3a8a);
    border-radius: 20px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(44, 72, 117, 0.3);
    animation: bounceIn 0.8s ease;
}

.logo-icon i {
    font-size: 28px;
    color: white;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #2c4875;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.logo-subtitle {
    display: block;
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 8px; /* Reduzido de 10px */
    min-height: 22px; /* Reserva espaço mesmo quando vazio */
}

/* Card Principal */
.login-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(203, 213, 225, 0.3);
    animation: slideInUp 0.6s ease;
}

/* Seções do Formulário */
.form-section {
    margin-bottom: 20px; /* Reduzido de 30px */
}

.section-header {
    text-align: center;
    margin-bottom: 20px; /* Reduzido de 30px */
}

.section-header h3 {
    font-size: 24px;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 8px; /* Reduzido de 12px */
}

.section-header p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

/* Seção 2FA */
.twofa-section .section-header {
    margin-bottom: 25px;
}

.security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 16px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.security-icon i {
    font-size: 24px;
    color: white;
}

/* Grupos de Input */
.input-group {
    margin-bottom: 18px; /* Reduzido de 25px */
}

.input-container {
    position: relative;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.form-input:valid {
    border-color: #10b981;
}

.form-input::placeholder {
    color: #94a3b8;
    transition: opacity 0.3s ease;
}

.form-input:focus::placeholder {
    opacity: 0;
}

/* Labels Flutuantes */
.form-label {
    position: absolute;
    left: 50px;
    top: 16px;
    color: #94a3b8;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 8px;
}

.form-input:focus + .form-label,
.form-input:valid + .form-label {
    top: -8px;
    left: 42px;
    font-size: 12px;
    color: #3b82f6;
    font-weight: 500;
}

/* Ícones dos Inputs */
.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: color 0.3s ease;
}

.form-input:focus ~ .input-icon {
    color: #3b82f6;
}

/* Toggle de Senha */
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.password-toggle:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

/* Input Específico do 2FA */
.twofa-input {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    padding: 20px;
}

.twofa-group .form-label {
    left: 20px;
}

.form-input:focus + .form-label,
.form-input:valid + .form-label {
    left: 12px;
}

/* Dicas de Input */
.input-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
}

.input-hint i {
    color: #3b82f6;
}

/* Opções do Formulário */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; /* Reduzido de 30px */
}

/* Checkbox Customizado */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-container:hover .checkmark {
    border-color: #3b82f6;
}

.checkbox-container input:checked ~ .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-container input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Link "Esqueceu a senha" */
.forgot-link {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Botão Principal */
.btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 14px rgba(30, 64, 175, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 25px rgba(30, 64, 175, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(30, 64, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loader do Botão */
.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Opções do 2FA */
.twofa-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* Reduzido de 15px */
    margin-top: 18px; /* Reduzido de 25px */
}

.resend-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.resend-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.timer-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

/* Mensagens Flash */
.flash-messages {
    margin-top: 15px; /* Reduzido de 20px */
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    animation: slideInDown 0.4s ease;
    position: relative;
}

.flash-success {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.flash-error {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
}

.flash-info {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
}

.flash-icon {
    font-size: 18px;
}

.flash-text {
    flex: 1;
    font-weight: 500;
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.flash-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.login-footer {
    text-align: center;
    margin-top: 25px; /* Reduzido de 40px */
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 18px; /* Reduzido de 25px */
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12px;
}

.security-badge i {
    font-size: 18px;
    color: #94a3b8;
}

.company-info {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.company-info strong {
    color: #374151;
    font-weight: 600;
}

.copyright {
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.7;
}

/* Animações */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estados de Input */
.form-input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input:invalid:not(:placeholder-shown) ~ .input-icon {
    color: #ef4444;
}

/* Efeitos de Hover */
.login-card:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        padding: 5px;
        overflow-y: auto; /* Garantir scroll em mobile */
    }
    
    .login-container {
        padding: 5px;
        max-width: 100%;
        width: 100%;
        padding-top: 3vh; /* Ainda mais para cima em mobile */
        padding-bottom: 3vh; /* Espaço no final */
        min-height: auto; /* Permitir que seja menor que 100vh */
        justify-content: flex-start;
    }
    
    .login-header {
        margin-bottom: 15px;
    }
    
    .login-card {
        padding: 20px 15px; /* Ainda mais compacto */
        border-radius: 16px;
        margin: 10px;
        max-width: none;
        width: calc(100% - 20px);
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .logo-icon i {
        font-size: 24px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 12px;
    }
    
    .welcome-text {
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: 15px;
    }
    
    .section-header h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .input-group {
        margin-bottom: 15px;
    }
    
    .form-section {
        margin-bottom: 18px;
    }
    
    .form-options {
        margin-bottom: 15px;
    }
    
    .form-input {
        padding: 14px 16px 14px 40px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .input-icon {
        left: 14px;
    }
    
    .form-label {
        left: 40px;
    }
    
    .form-input:focus + .form-label,
    .form-input:valid + .form-label {
        left: 32px;
    }
    
    .twofa-input {
        padding: 16px;
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .security-badge {
        font-size: 11px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .bg-shape-1,
    .bg-shape-2,
    .bg-shape-3 {
        opacity: 0.3; /* Reduzir animações em mobile */
    }
    
    .flash-message {
        margin: 15px 10px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
        overflow-y: auto;
    }
    
    .login-container {
        padding: 10px;
        padding-top: 2vh;
        padding-bottom: 2vh;
        min-height: auto;
    }
    
    .login-card {
        padding: 20px 15px; /* Ainda mais compacto */
        border-radius: 12px;
        margin: 5px;
        width: calc(100% - 10px);
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    
    .logo-icon i {
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .welcome-text {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-header h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .form-input {
        padding: 12px 14px 12px 36px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 14px;
    }
    
    .form-label {
        left: 36px;
        font-size: 14px;
    }
    
    .form-input:focus + .form-label,
    .form-input:valid + .form-label {
        left: 28px;
        font-size: 11px;
    }
    
    .btn-primary {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 8px;
    }
    
    .twofa-input {
        padding: 14px;
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .security-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    
    .security-icon i {
        font-size: 20px;
    }
    
    .security-badges {
        display: none; /* Ocultar em telas muito pequenas */
    }
    
    .company-info {
        font-size: 12px;
    }
    
    .copyright {
        font-size: 10px;
    }
    
    .flash-message {
        margin: 10px 5px;
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .input-group {
        margin-bottom: 20px;
    }
    
    .form-section {
        margin-bottom: 25px;
    }
}

/* Orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
    body {
        padding: 2px;
        overflow-y: auto;
    }
    
    .login-container {
        max-height: none; /* Remover limite de altura */
        overflow-y: visible; /* Permitir scroll natural */
        padding-top: 1vh;
        padding-bottom: 1vh;
        min-height: auto;
    }
    
    .login-card {
        padding: 20px;
        margin: 5px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .section-header {
        margin-bottom: 15px;
    }
    
    .section-header h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .input-group {
        margin-bottom: 15px;
    }
    
    .form-section {
        margin-bottom: 20px;
    }
    
    .security-badges {
        display: none;
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .login-container {
        max-width: 420px;
    }
    
    .login-card {
        padding: 30px 25px;
    }
    
    .form-input {
        padding: 15px 18px 15px 45px;
    }
    
    .input-icon {
        left: 16px;
    }
    
    .form-label {
        left: 45px;
    }
    
    .form-input:focus + .form-label,
    .form-input:valid + .form-label {
        left: 37px;
    }
}

/* Estados de Foco Melhorados */
.form-input:focus {
    border-color: #667eea;
    box-shadow: 
        0 0 0 3px rgba(102, 126, 234, 0.1),
        0 4px 12px rgba(102, 126, 234, 0.15);
}

/* Transições Suaves */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Melhorias de Acessibilidade */
.form-input:focus,
.btn-primary:focus,
.resend-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Tema Escuro (Opcional) */
@media (prefers-color-scheme: dark) {
    .login-card {
        background: rgba(30, 41, 59, 0.95);
        color: #f1f5f9;
    }
    
    .section-header h3 {
        color: #f1f5f9;
    }
    
    .section-header p {
        color: #94a3b8;
    }
    
    .form-input {
        background: rgba(51, 65, 85, 0.8);
        border-color: #475569;
        color: #f1f5f9;
    }
    
    .form-input::placeholder {
        color: #64748b;
    }
    
    .form-label {
        background: rgba(30, 41, 59, 0.95);
        color: #94a3b8;
    }
    
    .input-hint {
        color: #94a3b8;
    }
}

/* Animação de Loading na Página */
.login-container {
    animation: fadeInUp 0.8s ease;
}

/* Efeito de Ripple nos Botões */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before {
    width: 300px;
    height: 300px;
}

/* Estados de Validação Visual */
.input-container.valid .form-input {
    border-color: #10b981;
}

.input-container.valid .input-icon {
    color: #10b981;
}

.input-container.invalid .form-input {
    border-color: #ef4444;
}

.input-container.invalid .input-icon {
    color: #ef4444;
}

/* Melhorias de Performance */
.login-background,
.bg-shape,
.particle {
    will-change: transform;
}

/* Prevenção de FOUC (Flash of Unstyled Content) */
.login-container {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Indicador de Força da Senha */
.password-strength {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.password-strength-weak {
    background: #ef4444;
    width: 33%;
}

.password-strength-medium {
    background: #f59e0b;
    width: 66%;
}

.password-strength-strong {
    background: #10b981;
    width: 100%;
}

/* Modo Alto Contraste */
@media (prefers-contrast: high) {
    .login-card {
        border: 2px solid #1e293b;
    }
    
    .form-input {
        border-width: 2px;
    }
    
    .btn-primary {
        border: 2px solid #1e293b;
    }
}

/* Redução de Movimento */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .bg-shape,
    .particle {
        animation: none;
    }
}