/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fondo general */
body {
    font-family: Arial, sans-serif;
    background-image: url("assets/img/fondo.jpg"); 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor principal */
.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tarjeta */
.login-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo-section {
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

/* Título */
.logo-section h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.logo-section p {
    font-size: 14px;
    color: #777;
}

/* Formulario */
.login-form {
    margin-top: 20px;
    text-align: left;
}

/* Grupo de inputs */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #28a745;
}

/* Botón */
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

/* Hover del botón */
.btn-login:hover {
    background-color: #3ddc6b; /* verde más claro */
}

/* Mensajes */
.login-status {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

/* BOTÓN REGISTRO */
.btn-register {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #1e7e34;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-register:hover {
    background: #28a745;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* CONTENIDO MODAL */
.modal-content {
    background: white;
    padding: 20px;
    margin: 10% auto;
    width: 300px;
    border-radius: 10px;
    text-align: center;
}

/* CERRAR */
.close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}