/* Style the login page body */
body {
    background-color: #736B92;
    font-family: Arial, sans-serif;
  }
  
  /* Style the login form container */
  form {
    background-color: #7C90DB;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    width: 350px;
    margin: 50px auto;
  }
  
  /* Style the login form header */
  h2 {
    text-align: center;
    margin-top: 0;
    color:#E5BEED;
  }
  
  /* Style the login form input fields */
  input[type=text], input[type=password] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
  }
  
  /* Style the login form submit button */
  input[type=submit] {
    background-color: #9593D9;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    width: 100%;
  }
  
  /* Style the login form submit button when hovered over */
  input[type=submit]:hover {
    background-color: pink;
  }
  
  label{
    color: white;
  }