/* public/css/login.css */
body {
    background-color: #f5f6fa;
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.login-container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

/* La caja principal (Card) */
.login-box2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    min-height: 550px;
}

.login-content {
    display: flex;
    width: 100%;
}

/* --- SECCIÓN IZQUIERDA (FORMULARIO) --- */
.login-form-section {
    flex: 1.2; /* Un poco más ancho */
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-section center b {
    font-size: 1.5rem;
    color: #333;
    display: block;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #f8f9fa;
    font-size: 14px;
    box-sizing: border-box; /* Importante para que no se salga */
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #2f52b5;
    outline: none;
    background-color: #fff;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #2f52b5; /* Tu color del dashboard */
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #1e3c72;
}

.login-links {
    text-align: center;
    margin-top: 15px;
}

.link-reset {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.link-reset:hover {
    color: #2f52b5;
}

/* --- SECCIÓN DERECHA (IMAGEN/AZUL) --- */
.images-section {
    flex: 1;
    background: linear-gradient(135deg, #2f52b5 0%, #1e3c72 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    text-align: center;
}

.login-logo {
    max-width: 120px;
    margin-bottom: 20px;
    /* Si no hay imagen, esto simula un círculo blanco de fondo */
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 20px;
}

.register-box {
    margin-top: auto; /* Empuja esto hacia abajo */
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    width: 100%;
}

.register-box p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-register {
    display: inline-block;
    border: 1px solid white;
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-register:hover {
    background: white;
    color: #2f52b5;
}

/* Responsive para celular */
@media (max-width: 768px) {
    .login-box2 {
        flex-direction: column;
    }
    .images-section {
        display: none; /* Ocultamos la parte azul en celular */
    }
    .login-form-section {
        padding: 30px;
    }
}