body {
    font-family: Arial, sans-serif;
    background: url('../src/img/bomberos3.jpg') no-repeat center center fixed;
    background-size: cover;
    color: Black;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-container {
    background-color: rgba(255, 255, 255, 0.8); /* Fondo semi-transparente */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
    margin: auto;
}
.login-container h2 {
    font-size: 18px;
    margin-bottom: 15px;
}
.login-image {
    max-width: 150px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-group button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.form-group button:hover {
    background-color: #0056b3;
}
.error-message {
    color: red;
    margin-top: 10px;
    text-align: center;
}
.forgot-password {
    margin-top: 15px;
    text-align: center;
}
.forgot-password a {
    color: #007bff;
    text-decoration: none;
}
.forgot-password a:hover {
    text-decoration: underline;
}