/* Reset importante */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Contenedor login */
.body-login {
    background: #ff004a;
    font-family: Arial, sans-serif;
}

.layout-login {
    color: #333;
    max-width: 380px;
    margin: 80px auto;
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

/* Título */
.layout-login h1 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #EEE;
}

/* Labels e inputs */
.content-login div {
    margin-bottom: 16px;
}

.content-login label {
    display: block;
    font-weight: 500;
    margin-bottom: 4px;
}

.content-login input[type=text],
.content-login input[type=password] {
    width: 100%;
    height: 40px;                  /* 🔑 fija altura uniforme */
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.content-login input[type=text]:focus,
.content-login input[type=password]:focus {
    border-color: #ff004a;
    box-shadow: 0 0 4px rgba(255, 0, 74, 0.4);
}

.login-error {
    background: #DDD;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
}

/* Botón */
.form-button {
    margin-top: 10px;
}

.form-button button {
    width: 100%;
    padding: 12px;
    background: #ff004a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.form-button button:hover {
    background: #e10343;
}
