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

body {
    /* Coloque sua imagem de fundo na pasta img com o nome fundo.jpg */
    background: url('../img/fundo.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Película escura por cima da imagem de fundo */
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.login-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    gap: 50px;
}

/* Lado Esquerdo */
.branding {
    flex: 1;
    color: white;
    text-align: center;
}

.branding .logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.branding h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

/* Lado Direito - Caixa de Login */
.login-box {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 400px;
}

.lang-selector {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.lang-selector span {
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.lang-selector span:hover, .lang-selector span.active {
    color: #5544d4; /* Cor roxinha do seu design */
}

.login-box h2 {
    color: #222;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

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

.input-group label {
    display: block;
    font-size: 13px;
    color: #444;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.input-group input:focus {
    border-color: #5544d4;
}

/* O olhinho da senha */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.forgot-link {
    text-align: left;
    margin-bottom: 25px;
}

.forgot-link a {
    font-size: 13px;
    color: #5544d4;
    text-decoration: none;
    font-weight: 600;
}

.btn-entrar {
    width: 100%;
    padding: 14px;
    background-color: #0b1536; /* Azul bem escuro do seu design */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-entrar:hover {
    background-color: #16265c;
}

.signup-link {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #555;
}

.signup-link a {
    color: #5544d4;
    text-decoration: none;
    font-weight: bold;
}

/* Responsivo para celular */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
    }
    .branding h1 {
        font-size: 20px;
    }
}