.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-dark);
    padding: 2rem;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(120, 243, 12, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(120, 243, 12, 0.02) 50%, transparent 51%);
    background-size: 30px 30px;
}

.login-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(46, 51, 61, 0.95) 100%);
    padding: 0;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(120, 243, 12, 0.3);
    overflow: hidden;
    position: relative;
}

.login-header {
    background: linear-gradient(135deg, rgba(120, 243, 12, 0.1) 0%, rgba(120, 243, 12, 0.05) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(120, 243, 12, 0.2);
    position: relative;
}

.login-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(120, 243, 12, 0.8);
}

.login-logo {
    margin-bottom: 1rem;
}

.logo-img {

    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.login-title {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(120, 243, 12, 0.2);
    text-transform: uppercase;
}

.login-body {
    padding: 2.5rem;
}

.login-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.input-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.input-group label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.input-group input,
.input-group select {
    padding: 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(120, 243, 12, 0.2);
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}
.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.input-group select option[value=""] {
  color: rgba(255, 255, 255, 0.5);
}

.input-group select:invalid {
  color: rgba(255, 255, 255, 0.5);
}
.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 0 0 2px rgba(120, 243, 12, 0.3),
        0 0 15px rgba(120, 243, 12, 0.2);
    transform: translateY(-1px);
}

.input-group input:hover,
.input-group select:hover {
    border-color: rgba(120, 243, 12, 0.4);
    box-shadow: 0 0 10px rgba(120, 243, 12, 0.1);
}

.phone-section {
    background: rgba(120, 243, 12, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(120, 243, 12, 0.1);
    margin: 1rem 0;
}

.login-button {
    background: linear-gradient(45deg, var(--primary-color) 0%, #9fff3d 100%);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 15px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;

}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-button:hover::before {
    left: 100%;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 20px rgba(120, 243, 12, 0.3),
        0 0 0 1px rgba(120, 243, 12, 0.5);
}

.login-footer {

    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(120, 243, 12, 0.1);
}

.login-links {
    display: flex;
    justify-content: space-between;
}

.login-links:has(a:only-child) {
    justify-content: center;
}

.login-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.login-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(120, 243, 12, 0.6);
}

.login-links a:hover::after {
    width: 100%;
}

.login-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(120, 243, 12, 0.6);
}

@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .login-card {
        max-width: 100%;
        margin: 0;
    }
    
    .login-header,
    .login-body {
        padding: 1.5rem;
    }
    
    .login-footer {
        padding: 1rem 1.5rem;
    }
    
    .phone-section {
        padding: 1rem;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 0.5rem;
        min-height: 100vh;

        padding-top: 1rem;
    }
    
    .login-card {
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
        width: calc(100% - 1rem);
    }
    
    .login-header {
        padding: 1.5rem 1rem;
    }
    
    .login-body {
        padding: 1rem;
    }
    
    .login-footer {
        padding: 1rem;
    }
    
    .login-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .login-button {
        padding: 1rem;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .input-group label {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .input-group input,
    .input-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .phone-section {
        padding: 0.8rem;
        margin: 0.5rem 0;
        border-radius: 12px;
    }
    
    .phone-group {
        gap: 8px;
    }
    
    .country-selector {
        width: 70px;
    }
    
    .country-display {
        min-height: 42px;
        font-size: 12px;
    }
    
    .form-text {
        font-size: 0.75rem;
    }
    
    .phone-example {
        font-size: 10px;
        margin-top: 4px;
    }
} 

.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid;
    backdrop-filter: blur(5px);
}

.alert-danger {
    background: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
    color: #ff6b6b;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.alert-success {
    background: rgba(120, 243, 12, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(120, 243, 12, 0.3);
}

.alert ul {
    margin: 0;
    padding-left: 1.5rem;
}

.form-text {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 3px rgba(120, 243, 12, 0.2);
}

/* Seção Informativa do Naybox */
.naybox-info-section {
    background: linear-gradient(135deg, rgba(120, 243, 12, 0.05) 0%, rgba(120, 243, 12, 0.02) 100%);
    padding: 2rem;
    border-bottom: 1px solid rgba(120, 243, 12, 0.1);
    position: relative;
    overflow: hidden;
}



.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(120, 243, 12, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}



.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #9fff3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(120, 243, 12, 0.3);
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.info-highlight {
    background: linear-gradient(135deg, rgba(120, 243, 12, 0.1) 0%, rgba(120, 243, 12, 0.05) 100%);
    border: 1px solid rgba(120, 243, 12, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Indicadores de scroll para mobile */
@media (max-width: 768px) {
    .naybox-info-section::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 12px;
        height: 57%;
        background: linear-gradient(90deg, transparent, rgb(120 243 12 / 5%));
        pointer-events: none;
        z-index: 5;
    }
}

.info-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(120, 243, 12, 0.05) 50%, transparent 51%);
    background-size: 20px 20px;
    animation: shimmer 3s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.highlight-content i {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(120, 243, 12, 0.5);
}

.highlight-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsividade para a seção informativa */
@media (max-width: 768px) {
    .naybox-info-section {
        padding: 1.5rem;
    }
    
    .info-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .info-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .info-card {
        flex: 0 0 280px;
        padding: 1.2rem;
        scroll-snap-align: start;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Indicador de "mais conteúdo" no final do carrossel */
    .info-grid::after {
        content: '';
        flex: 0 0 20px;
        min-width: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .info-card h3 {
        font-size: 1rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
    
    .highlight-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .highlight-content i {
        font-size: 1.5rem;
    }
    
    .highlight-content h4 {
        font-size: 1.1rem;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .naybox-info-section {
        padding: 1rem;
    }
    
    .info-grid {
        gap: 0.8rem;
        padding-bottom: 0.8rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .info-card {
        flex: 0 0 260px;
        min-height: 180px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .info-card h3 {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
    
    .info-highlight {
        padding: 1.2rem;
    }
    
    .highlight-content i {
        font-size: 1.3rem;
    }
    
    .highlight-content h4 {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .highlight-content p {
        font-size: 0.85rem;
    }
} 