/* Reset básico para que todo se vea igual en cualquier navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #204479; /* Un gris muy claro de fondo */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Sombra suave */
    width: 100%;
    max-width: 380px;
    max-height: 550px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #1a73e8; /* Azul profesional */
    font-size: 28px;
}

.form-header p {
    color: #5f6368;
    font-size: 14px;
}

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

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

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #1a73e8; /* Resalta en azul al escribir */
    background-color: #f8faff;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-login:hover {
    background-color: #1557b0; /* Azul más oscuro al pasar el mouse */
}

.btn-login:active {
    transform: scale(0.98); /* Efecto de "presionando" el botón */
}

.error-msg {
    color: #d93025;
    background: #fce8e6;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    margin-top: 20px;
    text-align: center;
}