.login-container {
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-image: url("/assets/images/logo-facta.jpg");
    background-size: cover;
    background-position: center -250px;
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.login-form {
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 700px;
    margin-top: 120px;
    margin-bottom: 30px;
    outline: none;
}
.login-form label {
    font-weight: bold;
    color: black;
}

.campo {
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
    border: none;
}

.campo label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.campo input {
    font-size: 15px;
    padding: 12px;
    height: 45px;
    width: 100%;
    border-radius: 8px;
    background-color: #f2f2f2;
}

.campo button {
    padding: 15px;
    font-size: 16px;
    width: 100%;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #800000;
    outline: none;
}

.campo button:hover {
    background-color: #B22222;
}

.campo select {
    background-color: #f2f2f2;
}

