/* Contenedor principal de login */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

.login-container {
    background-color: #ffffff;
    padding: 20px 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Estilos para el logo y el lema */
.logo-section {
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    margin-bottom: 10px;
}

.motivational-quote {
    font-size: 1rem;
    color: #333333;
    font-style: italic;
    margin-top: 5px;
}

/* Estilos de formulario */
h3 {
    color: #333333;
    margin-bottom: 15px;
}

label {
    display: block;
    text-align: left;
    margin-top: 10px;
    color: #333333;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

/* Botones */
.btn-login, .btn-register {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-login {
    background-color: #218838;
    color: white;
}

.btn-login:hover {
    background-color: #196c31;
}

.btn-register {
    background-color: #007bff;
    color: white;
}

.btn-register:hover {
    background-color: #0056b3;
}

/* Link de "Olvidaste tu contraseña" */
.forgot-password {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-top: 15px;
}

.forgot-password:hover {
    text-decoration: underline;
}
