/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background: #1A1A1A;
    color: #ffffff;
    height: 100vh;
    line-height: 1.6;
}

/* Container principal */
.login-container {
    display: flex;
    height: 100vh;
    position: relative;
}

/* Lado Esquerdo - Branding */
.login-left {
    flex: 1;
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-content {
    text-align: center;
    z-index: 2;
    max-width: 500px;
    padding: 2rem;
}

.logo-section {
    margin-bottom: 3rem;
}

.brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.gamer {
    color: #DC3545;
}

.zone {
    color: #FFFFFF;
}

.brand-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #CCCCCC;
    font-weight: 400;
}

.welcome-text {
    margin-bottom: 3rem;
}

.welcome-text p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #CCCCCC;
}

.sub-text {
    font-size: 1rem !important;
    color: #888888 !important;
    font-weight: 300;
}

.tech-elements {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tech-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #DC3545, transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

.tech-dots {
    display: flex;
    gap: 0.5rem;
}

.tech-dots span {
    width: 8px;
    height: 8px;
    background: #DC3545;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.tech-dots span:nth-child(2) { animation-delay: 0.5s; }
.tech-dots span:nth-child(3) { animation-delay: 1s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Lado Direito - Formulário */
.login-right {
    flex: 1;
    background: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.form-container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #DC3545;
    margin: 0 auto;
    border-radius: 2px;
}

/* Alertas */
.alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border-color: #DC3545;
    color: #DC3545;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28A745;
    color: #28A745;
}

.alert-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Formulário */
.login-form {
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #CCCCCC;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem;
    background: #333333;
    border: 2px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper input::placeholder {
    color: #888888;
}

.input-wrapper input:focus {
    border-color: #DC3545;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Botões */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    position: relative;
    padding: 1rem 2rem;
    border: 2px solid;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-primary {
    border-color: #DC3545;
    background: #DC3545;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #0056B3;
    border-color: #0056B3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-secondary {
    border-color: #666666;
    background: transparent;
    color: #CCCCCC;
}

.btn-secondary:hover {
    background: #666666;
    border-color: #666666;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-accent {
    border-color: #DC3545;
    background: transparent;
    color: #DC3545;
}

.btn-accent:hover {
    background: #DC3545;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Footer do formulário */
.form-footer {
    text-align: center;
}

.back-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link:hover {
    color: #DC3545;
}

/* Responsividade */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    
    .login-left {
        flex: 0 0 40%;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .welcome-text {
        margin-bottom: 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .button-group {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .login-left {
        flex: 0 0 30%;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 1rem;
    }
}



/* Floating FAQ Button */
.faq-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #DC3545;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.faq-float-btn:hover {
    background-color: #B02A37;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.6);
}

@media (max-width: 768px) {
    .faq-float-btn {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
        bottom: 15px;
        right: 15px;
    }
}


