@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600&family=Montserrat:wght@500&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }
        
        html {
            height: 100%;
            font-size: 16px;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #fff;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            background: #0a0f14;
            overflow-x: hidden;
        }
        
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .video-background video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 15, 20, 0.0);
            z-index: 1;
        }
        
        .container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 420px;
            background: rgba(20, 25, 35, 0.75);
            padding: clamp(24px, 6vw, 40px) clamp(20px, 5vw, 35px);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(80, 130, 200, 0.2);
            margin: auto;
        }
        
        .logo {
            text-align: center;
            margin-bottom: clamp(24px, 6vw, 30px);
        }
        
        .logo h1 {
            font-size: clamp(32px, 6vw, 48px);
            font-weight: 700;
            background-clip: text;
            margin-bottom: 4px;
            line-height: 1.2;
            margin: 0;
            position: relative;
        }
        
        .logo p {
            font-size: clamp(12px, 3vw, 14px);
            letter-spacing: 0.5px;
        }
         
     .logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0px;
}


.logo .minas {
    font-family: 'Baloo 2', sans-serif;
    color: #9f6431; /* marrom terroso */
    letter-spacing: -1px;
}

.logo .aerea {
    font-family: 'Baloo 2', sans-serif;
    color: #6b8693;
    text-transform: uppercase;
    margin-left: 5px;
}

        
        h2 {
            text-align: center;
            margin-bottom: clamp(24px, 6vw, 30px);
            font-weight: 500;
            font-size: clamp(18px, 5vw, 22px);
            color: #e0e7ff;
        }
        
        .form-group {
            margin-bottom: clamp(16px, 4vw, 20px);
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #c0d0e0;
            font-size: clamp(14px, 4vw, 15px);
        }
        
        input[type="text"],
        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: clamp(12px, 4vw, 16px);
            background: rgba(30, 35, 45, 0.9);
            border: 1px solid rgba(80, 130, 200, 0.4);
            border-radius: 8px;
            font-size: clamp(14px, 4vw, 16px);
            color: #fff;
            transition: all 0.3s ease;
            -webkit-appearance: none;
            appearance: none;
        }
        
        input:focus {
            outline: none;
            border-color: #4facfe;
            box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.25);
        }
        
        .btn {
            width: 100%;
            padding: clamp(14px, 4vw, 16px);
            background: linear-gradient(to right, #4facfe, #00c6ff);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: clamp(15px, 4vw, 16px);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            -webkit-appearance: none;
            appearance: none;
            touch-action: manipulation;
        }
        
        .btn:hover,
        .btn:active {
            background: linear-gradient(to right, #3a9de9, #00b4e6);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 198, 255, 0.3);
        }
        
        .btn:disabled {
            opacity: 0.7;
            transform: none;
            box-shadow: none;
            cursor: not-allowed;
        }
        
        .alert {
            padding: clamp(12px, 3vw, 16px);
            border-radius: 8px;
            margin-bottom: clamp(16px, 4vw, 20px);
            font-size: clamp(13px, 3.5vw, 14px);
            line-height: 1.4;
        }
        
        .alert-error {
            background: rgba(220, 53, 69, 0.25);
            color: #f8d7da;
            border: 1px solid rgba(220, 53, 69, 0.4);
        }
        
        .alert-success {
            background: rgba(40, 167, 69, 0.25);
            color: #d4edda;
            border: 1px solid rgba(40, 167, 69, 0.4);
        }
        
        .alert-warning {
            background: rgba(255, 193, 7, 0.25);
            color: #fff3cd;
            border: 1px solid rgba(255, 193, 7, 0.4);
        }
        
        .alert-info {
            background: rgba(23, 162, 184, 0.25);
            color: #d1ecf1;
            border: 1px solid rgba(23, 162, 184, 0.4);
        }
        
        .links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: clamp(20px, 5vw, 24px);
            font-size: clamp(13px, 3.5vw, 14px);
        }
        
        .links a {
            color: #6cb2eb;
            text-decoration: none;
            transition: color 0.3s ease;
            text-align: center;
            padding: 8px;
            border-radius: 6px;
        }
        
        .links a:hover {
            color: #4facfe;
            background: rgba(79, 172, 254, 0.1);
        }
        
        .copyright {
            text-align: center;
            margin-top: clamp(24px, 6vw, 30px);
            font-size: clamp(11px, 3vw, 12px);
            color: #7a8ca5;
            line-height: 1.4;
        }
        
        /* Estilos para verificação */
        .verification-section {
            text-align: center;
            margin-bottom: clamp(20px, 5vw, 30px);
            padding: clamp(16px, 4vw, 20px);
            background: rgba(30, 35, 45, 0.7);
            border-radius: 12px;
            border: 1px solid rgba(80, 130, 200, 0.3);
        }
        
        .verification-section h3 {
            color: #4facfe;
            margin-bottom: 8px;
            font-size: clamp(16px, 4.5vw, 18px);
        }
        
        .email-display {
            color: #6cb2eb;
            font-weight: 600;
            margin: 12px 0;
            word-break: break-all;
            font-size: clamp(13px, 3.5vw, 14px);
            line-height: 1.4;
        }
        
        .code-input {
            width: 100%;
            padding: clamp(16px, 4vw, 20px);
            background: rgba(30, 35, 45, 0.9);
            border: 1px solid rgba(80, 130, 200, 0.4);
            border-radius: 12px;
            font-size: clamp(20px, 6vw, 28px);
            color: #fff;
            text-align: center;
            letter-spacing: clamp(4px, 2vw, 8px);
            font-weight: 600;
            transition: all 0.3s ease;
            margin-bottom: 12px;
            -webkit-appearance: none;
            appearance: none;
        }
        
        .input-hint {
            display: block;
            font-size: clamp(12px, 3vw, 13px);
            color: #a0b3c6;
            margin-top: 8px;
            text-align: center;
        }
        
        .resend-section {
            text-align: center;
            margin-top: clamp(20px, 5vw, 24px);
            padding-top: clamp(16px, 4vw, 20px);
            border-top: 1px solid rgba(80, 130, 200, 0.2);
        }
        
        .resend-btn {
            background: transparent;
            border: 1px solid rgba(80, 130, 200, 0.5);
            color: #6cb2eb;
            padding: clamp(10px, 3vw, 12px) clamp(16px, 4vw, 20px);
            border-radius: 8px;
            cursor: pointer;
            font-size: clamp(13px, 3.5vw, 14px);
            transition: all 0.3s ease;
            margin-bottom: 8px;
            width: 100%;
            touch-action: manipulation;
        }
        
        .resend-btn:hover,
        .resend-btn:active {
            background: rgba(80, 130, 200, 0.15);
            border-color: #4facfe;
            color: #4facfe;
        }
        
        .resend-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .resend-info {
            font-size: clamp(11px, 3vw, 12px);
            color: #a0b3c6;
            line-height: 1.4;
            margin-top: 8px;
        }
        
        .back-to-login {
            text-align: center;
            margin-top: clamp(16px, 4vw, 20px);
        }
        
        .back-to-login a {
            color: #6cb2eb;
            text-decoration: none;
            font-size: clamp(13px, 3.5vw, 14px);
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .back-to-login a:hover {
            color: #4facfe;
            background: rgba(79, 172, 254, 0.1);
        }

        /* Melhorias para telas muito pequenas */
        @media (max-width: 320px) {
            body {
                padding: 12px;
            }
            
            .container {
                padding: 20px 16px;
                border-radius: 12px;
            }
            
            .logo h1 {
                font-size: 22px;
            }
        }

        /* Melhorias para tablets e telas maiores */
        @media (min-width: 768px) {
            body {
                padding: 20px;
            }
            
            .container {
                max-width: 440px;
                padding: 40px 35px;
            }
            
            .links {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        /* Prevenir zoom em inputs no iOS */
        @media (max-width: 768px) {
            input[type="text"],
            input[type="password"],
            .code-input {
                font-size: 16px; /* Prevenir zoom no iOS */
            }
        }

        /* Suporte para modo escuro */
        @media (prefers-color-scheme: dark) {
            .container {
                background: rgba(15, 20, 30, 0.75);
            }
        }

        /* Animações suaves */
        .container {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Novos estilos para contadores */
        .countdown {
            color: #4facfe;
            font-weight: 600;
            font-size: clamp(12px, 3vw, 13px);
        }
        
        .blocked-message {
            background: rgba(220, 53, 69, 0.25);
            color: #f8d7da;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid rgba(220, 53, 69, 0.4);
            margin-bottom: 16px;
            text-align: center;
            font-size: clamp(13px, 3.5vw, 14px);
        }
        
        .description {
            text-align: center;
            margin-bottom: 5px;
            color: #a0b3c6;
            font-size: 15px;
            line-height: 1.5;
                word-break: normal;
    overflow-wrap: break-word;
        }
        .email-display {
            text-align: center;
            margin-bottom: 30px;
            padding: 15px;
            background: rgba(30, 35, 45, 0.6);
            border-radius: 6px;
            border: 1px solid rgba(80, 130, 200, 0.3);
        }
        
        .email-display strong {
            color: #4facfe;
            font-size: 16px;
                word-break: normal;
    overflow-wrap: break-word;        }
    
    
    /* Indicador de campo obrigatório */
        .required-field label::after {
            content: " *";
            color: #e74c3c;
        }
        
        
        .password-strength {
            margin-top: 8px;
            height: 4px;
            border-radius: 2px;
            background: rgba(80, 130, 200, 0.2);
            overflow: hidden;
        }
        
        .password-strength-bar {
            height: 100%;
            transition: all 0.3s ease;
            width: 0%;
        }
        
        .strength-weak { background: #e74c3c; width: 25%; }
        .strength-medium { background: #f39c12; width: 50%; }
        .strength-strong { background: #2ecc71; width: 75%; }
        .strength-very-strong { background: #27ae60; width: 100%; }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        /* Estilos para a tela de período de teste */
.trial-description {
     text-align: center;
            margin-bottom: 5px;
            color: #a0b3c6;
            font-size: 15px;
            line-height: 1.5;
                word-break: normal;
    overflow-wrap: break-word;
}

.description-content {
     text-align: center;
            margin-bottom: 5px;
            color: #a0b3c6;
            font-size: 15px;
            line-height: 1.5;
                word-break: normal;
    overflow-wrap: break-word;
}

.description-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.description-content p:last-child {
    margin-bottom: 0;
}


.btn-large {
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    
    .description-content {
        font-size: 15px;
    }
    
    .btn-large {
        padding: 16px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .trial-description {
        padding: 15px;
    }
    
    .description-content {
        font-size: 14px;
        line-height: 1.6;
    }
}
        
        
       