body {
    margin: 0;
    padding: 0;
    background: url('../img/Fondo_Index.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    position: relative;
}

.login-box {
    width: 300px;
    padding: 40px;
    position: relative; 
    background: rgba(255, 255, 255, 0.9); 
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1; 
	background-color:#2E86C1;
}

.login-box h2 {
    margin: 0 0 20px;
    padding: 0;
    color: #333;
	font-family: Arial;
}

.textbox {
    position: relative;
    margin-bottom: 30px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    background: #f0f0f0;
    border: none;
    outline: none;
    color: #333;
    font-size: 18px;
    border-radius: 4px;
}

.btn {
    width: 100%;
    background: #007bff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
    transition: background 0.3s;
	background-color: #E74C3C;
	font-family: Arial;
}
.modal{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.btn:hover {
    background: #CB4335 ;
}
.modal-content-delete {
    background-color: #F5B7B1;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 20%;
    border-radius: 10px;
    margin-top: 30%;
    font-size: 15px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(8px);
    z-index: -1; 
}