@font-face {
    font-family: 'Creato';
    src: url('./CreatoDisplay-Medium.otf');
}
body{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    width:100vw;
    margin:0;
    padding:0;
    background-image: url('bg-login.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Creato', Arial, sans-sherif;
}
form{
    padding: 20px;
    border-radius:1em;
    background-color: rgba(255, 255, 255, 0.543);
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display:flex;
    flex-direction:column;
}
input[type="text"]{
    display:block;
    margin-bottom:15px;
    padding:10px;
    width:16em;
    border:1px solid #ccc;
    border-radius:4px;
    background-color: rgba(240, 248, 255, 0.623);
    font-size:1em;
}
input[type="text"]:focus{
    outline:none;
}
input[type="submit"]{
    background-color:#0043d2;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:4px;
    cursor:pointer;
    font-size:1em;
}
.logo{
    height:150px;
    width: auto;
    margin: auto;
}
.passbox{
    display: flex;
    flex-direction: row;
    padding:0 10px;
    border:1px solid #ccc;
    border-radius:4px;
    background-color: rgba(240, 248, 255, 0.623);
    font-size:1em;
    margin-bottom:15px;
    width: 16em;
}
.passbox input{
    background: transparent;
    border: none;
    margin:0;
    padding:0;
    width:100%;
}
.passbox input:focus{
    border:none;
    outline: none;
}
.toggle-password {
    font-size: 1em;
    padding:10px;
    margin:0;
    border:none;
    background:transparent;
    cursor: pointer;
}
.toggle-password i {
    margin:0;
    padding:0;
}
.error{
    color:red;
}