/* Reset básico */
* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor del login */
.login-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 320px;
}

/* Título */
h2 {
    margin-bottom: 1rem;
    color: #333;
}

/* Grupos de input */
.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

label {
    font-size: 14px;
    font-weight: bold;
    display: block;
}

/* Campos de entrada */
input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Botón de enviar */
button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Mensajes de error */
.error {
    color: red;
    margin-bottom: 1rem;
    font-size: 14px;
}

/* Enlace de registro */
.register-link {
    margin-top: 10px;
    font-size: 14px;
}

.register-link a {
    color: #007bff;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}
