* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Barra Superior */
.top-bar {
    background: #062e6c;
    height: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.version-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
}

.container {
    display: flex;
    height: calc(100vh - 25px);
    width: 100%;
    margin-top: 25px;
}

/* Lado Esquerdo - Azul */
.left-side {
    background: linear-gradient(135deg, #1e4a8b 0%, #2563eb 50%, #3b82f6 100%);
    width: 65%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    color: white;
    overflow: hidden;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content p {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Círculos decorativos */
.decorative-circles {
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.circle-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

/* Lado Direito - Branco */
.right-side {
    background: #ffffff;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.logo {
    height: 85px;
    width: auto;
}

.login-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
}

.login-form-container h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 40px;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #9ca3af;
    font-size: 16px;
    z-index: 1;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 16px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-group input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.input-group select {
    color: #6b7280;
    cursor: pointer;
}

.input-group select option {
    padding: 10px;
}

.login-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.login-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.sureleve-logo {
    display: flex;
    justify-content: center;
    align-items: end;
    margin-top: 30px;
}

.sureleve-img {
    height: 80px;
    width: auto;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 1024px) {
    .top-bar {
        padding: 0 15px;
        justify-content: center;
    }
    
    .version-text {
        font-size: 11px;
    }
    
    .container {
        height: calc(100vh - 35px);
    }
    
    .left-side {
        width: 60%;
        padding: 40px;
    }
    
    .right-side {
        width: 40%;
        padding: 30px;
    }
    
    .content h1 {
        font-size: 2.8rem;
    }
    
    .content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        height: 30px;
        padding: 0 10px;
        justify-content: center;
    }
    
    .version-text {
        font-size: 10px;
    }
    
    .container {
        flex-direction: column;
        height: calc(100vh - 30px);
        margin-top: 30px;
    }
    
    .left-side {
        width: 100%;
        height: 40%;
        padding: 30px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .right-side {
        width: 100%;
        height: 60%;
        padding: 30px;
    }
    
    .content h1 {
        font-size: 2.2rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    .login-form-container h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .decorative-circles {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-bar {
        height: 28px;
        padding: 0 8px;
        justify-content: center;
    }
    
    .version-text {
        font-size: 9px;
    }
    
    .container {
        height: calc(100vh - 28px);
        margin-top: 28px;
    }
    
    .left-side {
        padding: 20px;
        height: 35%;
    }
    
    .right-side {
        padding: 20px;
        height: 65%;
    }
    
    .content h1 {
        font-size: 1.8rem;
    }
    
    .login-form {
        gap: 20px;
    }
    
    .input-group input,
    .input-group select {
        padding: 14px 40px;
        font-size: 14px;
    }
    
    .login-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}
