/*  
Thanks to: Usama Tahir
https://medium.com/@AmJustSam
*/

* {
    margin: 0;
    padding: 0;
}

html {
    width: 100vw;
    height: 100dvh;
}

/* CSS which you need for blurred box */
body {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    background-image: url('./img/background.jpg');
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica;
    letter-spacing: 0.02em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.blurred-box {
    position: relative;
    width: 250px;
    height: auto;
    top: calc(50% - 175px);
    left: calc(50% - 125px);
    background: inherit;
    border-radius: 2px;
    overflow: hidden;
}

.blurred-box:after {
    content: '';
    width: 300px;
    height: auto;
    background: inherit;
    position: absolute;
    left: -25px;
    left: position;
    right: 0;
    top: -25px;
    top: position;
    bottom: 0;
    box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.05);
    filter: blur(10px);
}


/* Form which you dont need */
.user-login-box {
    position: relative;
    text-align: center;
    margin: 20px 0 20px 0;
    z-index: 1;
}

.user-login-box>* {
    display: inline-block;
    width: 200px;
}

.user-icon-bibloteca {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    background-size: cover;
    background-image: url('./img/biblioteca.jpg');
}

.user-icon-menesteres {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    background-size: cover;
    background-image: url('./img/sala-de-los-menesteres.jpg');
}

.user-icon-pociones {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    background-size: cover;
    background-image: url('./img/sala-de-pociones.jpg');
}

.user-name {
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
}

.user-name-1 {
    margin-top: 15px;
    margin-bottom: 15px;
    color: white;
}

.respuesta {
    margin-top: 15px;
    margin-bottom: 15px;
    color: white;

}

.user-password {
    background: gray;
    width: 120px;
    height: auto;
    border-radius: 2px;
    padding: 5px;
    border: 0;
    color: white;
}

button.user-password {
    width: 120px;
    margin-top: 8px;
}