/* ===========================
   FONDO GENERAL LOGIN
=========================== */
.login-body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #1E3A8A, #0f172a);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===========================
   CONTENEDOR LOGIN
=========================== */
.login-container {
    background-color: #ffffff;
    width: 350px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #1E3A8A;
}

/* ===========================
   INPUTS
=========================== */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 5px rgba(30, 58, 138, 0.4);
}

/* ===========================
   BOTÓN LOGIN
=========================== */
.btn-login {
    width: 100%;
    padding: 10px;
    background-color: #1E3A8A;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-login:hover {
    background-color: #2748B3;
}

/* ===========================
   REGISTRO
=========================== */
.extra {
    margin-top: 15px;
}

.extra p {
    margin-bottom: 8px;
    color: #333;
}

.btn-register {
    display: inline-block;
    padding: 8px 12px;
    background-color: #E63946;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-register:hover {
    background-color: #c92f3a;
}
.back-home {
    margin-top: 15px;
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 10px 15px;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-back:hover {
    background: #5a6268;
}