body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('../img/formulario.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 50, 0.5);
    z-index: 1;
}

.login-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    width: 100%;
    max-width: 400px;
    z-index: 2;
    position: relative;
}

.logo-space {
    text-align: center;
    margin-bottom: 20px;
}

.logo-space img {
    max-width: 200px;
    height: auto;
}

.logo-space h1 {
    font-size: 1.2em;
    color: #006400;
    margin: 5px 0;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    font-size: 0.9em;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 0.9em;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: #006400;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 8px;
}

.checkbox-group label {
    font-weight: normal;
    color: #555;
}

button {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}

.links {
    text-align: center;
    margin-top: 15px;
}

.links a {
    color: #006400;
    text-decoration: none;
    font-size: 0.85em;
    margin: 0 10px;
}

.links a:hover {
    text-decoration: underline;
}

.error-message {
    color: red;
    font-size: 0.85em;
    margin-top: 10px;
    text-align: center;
    display: none;
}

