* { 
    margin: 0;
    padding: 0;
    font-family: Roboto,Arial;
    box-sizing: border-box;
  }
 
  
  
  body {
    width: 100%;
    background-color: lightblue;
  
   

 }
.login-form {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;

    
    
    
}

.title {
    position: relative;
    top:-30px;
    color:#0074e8;
    cursor: pointer;

}

.login-info {
    display: flex;
    flex-direction:column ;
    

    
}



.email-search-bar {
    width: 340px;
    height: 40px;
    margin-bottom: 20px;
    border:none;
    border-radius: 4px;
    box-shadow: 3px 3px 3px 3px rgba(0,0,0,0.15);

}
.email-search-bar::placeholder {
    font-size: 16px;
    padding-left:7px;

}
.password-search-bar {
    height: 40px;
    margin-bottom: 20px;
    border:none;
    border-radius: 4px;
    box-shadow: 3px 3px 3px 3px rgba(0,0,0,0.15);

}

.password-search-bar::placeholder {
    font-size: 16px;
    padding-left: 7px;
}

.login-button{
    font-size: 16px;
    font-weight: bold;
    height: 40px;
    margin-bottom: 20px;
    color:white;
    background-color:#0074e8;
    border: none;
    border-radius: 4px;
    cursor: pointer;

}

.login-button:hover {
    background-color:#2d94fc;
    
}

.password {
    margin-bottom: 15px;
    text-align: center;
    color: #0074e8;
    cursor: pointer;

     
}

.password:hover {
    text-decoration: underline;
}

.new-account-button {
    font-size: 16px;
    font-weight: bold;
    height: 40px;
    color:white;
    background-color:#0074e8;
    border:none;
    border-radius: 4px;
    cursor: pointer;

}

.new-account-button:hover {
    background-color:#2d94fc;

}
