* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

/* Barra superior */
.top-bar {
    background-color: #2c3e50;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 2px 10px;
    font-size: 10px;
    cursor: pointer;
}

/* Sección Hero */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), 
                url('https://via.placeholder.com/1200x400'); /* Sustituir por la imagen de la mujer */
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* Contenedor de Formulario */
.login-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.security-check h2 {
    color: #666;
    font-weight: normal;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.check-icon {
    color: #333;
}

hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin-bottom: 30px;
}

.form-layout {
    display: flex;
    gap: 40px;
}

.login-form {
    flex: 1;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.input-group input[type="password"] {
    background-color: #e8f0fe;
}

.submit-btn {
    width: 100%;
    background-color: #337ab7;
    color: white;
    border: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

/* Texto informativo lateral */
.info-text {
    flex: 1;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #bdc3c7;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 12px;
}

