body {
    font-family: "Merriweather", sans-serif;
    background-color: #e1d3f2;
    margin: 0;
    padding: 0;
  }

  /* start of header */
  
  
  .header{
    margin: 0;
    height: 100px;
    background-color: #B399D4;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 45px;
    padding-left: 0;
  }

  
  .header-title {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    color: white;
}

.header-title img {
    height: 105px;
    padding: 10px;
  }  

.header-title h1 {
    padding: 10px;
}

  .nav a{
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
  }
  
  .nav a:hover{
    color: #F5E1FD;
    transform: scale(0.9,0.9);
    transition: all 0.3s;
  }
  
  .nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    
  }
  
  .nav li {
    margin-left: 25px;
    font-size: 25px;
  }
  
  /* end of header */

  /*************************/


  /* coming soon disclaimer */


  .coming-soon {
    margin-top: 10%;
    text-align: center;
    background-color: white;
    padding: 30px;
  }

  .coming-soon h1 {
      font-size: 35px;
      color: rgb(187, 24, 24);
  }

  .coming-soon h3 {
      font-size: 20px;
  }

  /* end of coming soon disclaimer */

  /* login box begins */

  * {
    box-sizing: border-box;
  }
  
  .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
    border-radius: 20%;
  }
  
  
  .login {
    border-radius: 15px;
    padding: 10px 25px 25px 25px;
    padding-bottom: 30px;
    width: 90%;
    max-width: 500px;
    min-height: 00px;
    background: #ffffff;
    position: relative;
    padding-bottom: 80px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.5);
    }
    
    input {
      display: block;
      padding: 15px 10px;
      margin-bottom: 10px;
      width: 100%;
      border: 1px solid #ddd;
      font-size: 25px;
      border-radius: 10px;
      color: black;
     
    }
    
    a {
     font-size: 1em;   
     text-decoration: none;
     color: #6a6e75;
    }

    a:hover{
        color: #b3b4b5;
    }
    
    .title {
      color: #444;
      font-family: 'Merriweather';
      font-size: 1.8em;
      font-weight: bold;
      margin: 10px 0 30px 0;
      border-bottom: 1px solid #eee;
      padding-bottom: 20px;
    }
    
    button {
      width: 100%;
      height: 100%;
      padding: 10px 10px;
      background-color: #B399D4;
      color: white;
      font-size: 25px;
      font-family: Merriweather;
      display: block;
      margin-top: 20px;
      position: absolute;
      left: 0;
      bottom: 0;
      max-height: 60px;
      border: 0px solid rgba(0,0,0,0.1);
      border-radius: 0 0 15px 15px;  
  }
  
button:hover{
    background-color: #9e80c4;
    cursor: pointer;
}

  /* login box ends */