/* Estilo General */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f9ff;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
}

/* Contenedor del logo */
.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

/* Contenedor del formulario */
.login-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Título */
.login-container h2 {
    margin-bottom: 1.5rem;
    color: #0056b3;
}

/* Grupo de formulario */
.form-group {
    margin-bottom: 2rem; /* Aumenta el espacio entre los campos */
    text-align: left;
}

/* Etiquetas */
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

/* Campos de entrada */
input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* Botón de enviar */
button {
    background: #084e05;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Para que el botón se ajuste al tamaño del contenedor */
    text-align: center; /* Asegura que el contenido del botón esté centrado */
}

button:hover {
    background: #b3cbc9;
}

/* Opciones adicionales */
.extra-options {
    margin-top: 1rem;
}

.extra-options a {
    color: #0056b3;
    text-decoration: none;
    font-size: 0.9rem;
}

.extra-options a:hover {
    text-decoration: underline;
}

/* Media Queries para diseño responsivo */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .login-container, .register-container, section {
        width: 100%;
        padding: 1rem;
    }

    header h1 {
        font-size: 1.5rem;
    }

    nav ul li {
        display: block;
        margin: 0.5rem 0;
    }

    nav ul li a {
        font-size: 1rem;
    }

    button {
        width: 100%;
        padding: 0.75rem;
    }

    .extra-options a {
        font-size: 0.9rem;
    }
}
