body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.body{
    border: 3px solid blueviolet;
    border-radius: 15px;
    background-color: white;
    text-align: center;
    position: fixed;
    margin: center;
    align-items: center;
    padding: 10px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.9), 0 6px 20px 0 rgba(0, 0, 0, 0.9);
}
input{
    background-color: white;
    border: 1px solid  black;
    border-radius:  5px;
    
} 
.title{
    font-weight: bold;
    font-size: large;
    margin-top: -15px;
}
.login input[type = "text"]{
    margin-top: 5px;
    font-family: 'Times New Roman', Times, serif;
}
.password-container{
    width: 400px;
    
  }
.password-container input[type="password"],
.password-container input[type="text"]{
box-sizing: border-box;
text-align: left;
font-family: 'Times New Roman', Times, serif;
}
.fa-eye{
position: fixed;
cursor: pointer;
color: #e6d2f9;
top: 56.5%;
left: 71%;
text-align: right;
transition-duration: 0.4s;
}
.fa-eye:hover{
    color: #c18ff0;
}
.fa-eye:active{
    color: #f3e9fc;
}
.loginButton{
    transition-duration: 0.4s;
    font-family: 'Times New Roman', Times, serif;
    border: 1px solid #9c4be7;
    font-weight: bold;
    padding: 3px;
    width: 50px;
}
.loginButton:hover{
    background-color: #e6d2f9   ;
}
.loginButton:active{
    background-color: #f3e9fc;

}
.error{
    margin-top: -5px;
}
.Background {
    width: 100vw; 
    height: 100vh; 
    object-fit: cover;
    overflow: hidden;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    margin: 0; 
    padding: 0; 
}