/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    height: 100vh;
    overflow: hidden;
}

.btn-voltar {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    z-index: 10;
}

.login-container {
    display: flex;
    height: 100vh;
}

.login-left {
    flex: 1;
    background-color: #2c3440; 
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.left-content {
    max-width: 500px;
}

.left-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.destaque {
    color: #6ed134; 
}

.left-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #d1d5db;
}

.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.login-card {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.logo-container h3 {
    color: #4a5568;
    font-size: 18px;
}

.subtitle {
    text-align: center;
    color: #718096;
    font-size: 14px;
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.tab {
    padding: 10px 20px;
    font-weight: 600;
    color: #a0aec0;
    cursor: default;
}

.tab.active {
    color: #6574b6; /* Azul atualizado */
    border-bottom: 2px solid #6574b6; /* Azul atualizado */
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #6574b6; /* Azul atualizado */
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
    color: #718096;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #6574b6; /* Azul atualizado */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #55629c; /* Azul um pouco mais escuro para o hover */
}

@media (max-width: 768px) {
    .login-left {
        display: none; 
    }
    .btn-voltar {
        color: #4a5568; 
    }
    .login-right {
        background-color: #f4f6f8; 
    }
    .login-card {
        box-shadow: none; 
        padding: 20px;
    }
}