body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(54, 0, 51), rgb(27, 27, 50), rgb(0, 0, 0));
    background-attachment: fixed;
    background-size: cover;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}
.password-box input {
    text-align: center;
    width: 50%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 20px;
    box-shadow: 10px 10px 20px #000000;
}

.password-box {
    width: 500px;
    margin: 100;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: aliceblue;
    border-radius: 10px;
    text-align: center;
    box-shadow: 10px 10px 20px #000000, -10px -10px 20px #000000;
}

.password-box h1 {
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.password-box p {
    color: rgb(255, 255, 255);
    font-size: 20px;

}

.volver i {
    color: white;
    transition: color 0.3s ease;
}

.volver:hover i {
    color: black;
}

body.swal2-shown {
    height: 100vh !important;
}
