* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fondo {
    background-image: url('../imagenes/fondoLogin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-container {
    background-color: rgba(5, 5, 5, 0.5);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: white;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
    font-size: 14px;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.input-group input:focus {
    border-color: #007bff;
    outline: none;
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: #8f0d0d;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background-color: #4b0808;
}

.forgot-password {
    margin-top: 10px;
    font-size: 14px;
}

.forgot-password a {
    color: #971212;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.border-button {
    border: 2px solid #007bff; /* Cambia el color del borde aquí */
    background-color: transparent; /* Fondo transparente */
    color: #007bff; /* Color del texto */
    border-radius: 5px; /* Borde redondeado */
}

.border-button:hover {
    background-color: #007bff; /* Color de fondo al pasar el ratón */
    color: white; /* Color del texto al pasar el ratón */
}
