
* {
    margin: 0;
    padding: 0;
}

body{
    /*background: rgba(5, 233, 202, 0.8);*/
    background-color:rgb(68,166,198);
}
header{
    height: 150px;
    border-bottom: 1px solid rgba(0,0,0, .65);
    margin: 0;
    /*background: rgba(32, 219, 194, 0.8);*/
    background-color: rgb(53,144,174);
    overflow: auto;
}
header h1{

    text-align: center;
    font-size: 40px;
    margin-top: 55px;
    font-family: 'Raleway', sans-serif; 

}
header a{
    text-decoration: none;
    color: rgb(35,43,43);
}
/* Navbar container */
.navbar {
    overflow: hidden;
    font-family: Arial;
  }
  
  /* Links inside the navbar */
  .navbar a {
    float: left;
    font-size: 20px;
    color: rgb(35,43,43);

    text-align: center;
    padding: 11px 13px;
    text-decoration: none;
  }
  
  /* The dropdown container */
  .dropdown {
    float: right;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 20px;
    border: none;
    color: rgb(35,43,43);
    outline: none;
    padding: 11px 13px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color:rgb(36, 142, 177);
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color:rgb(36, 142, 177);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 16px;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }


body h2 {
    font-size: 45px;
    text-align: center;
    color: rgba(0,10,23,0.9);
    font-weight: 600;
    font-family: 'Raleway', sans-serif; 
    margin-top: 25px;
}

.loginDiv{
    position: relative;

    background: rgba(0,0,0, .65);
    width: 600px;
    height: 600px;
    text-align: center;
    margin: auto;
    margin-top: 20px;
    overflow: hidden;

    
}
.loginDiv h2{
    font-size: 35px;
    margin-top: 20px;
    color: lavender;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0, .65);
}
.loginDiv form {

    margin:auto;
    margin-top: 50px;

    text-align: center;




}
.loginDiv input{
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}
.loginDiv label{
    color: lavenderblush;

    font-size: 30px;
}
.loginDiv button{
    background: rgba(0,0,0, .1);
    position: absolute;
    border-style: dotted;
    border: 1px dotted black;
    right: 0;
    bottom: 0px;
    padding: 5px;
    font-size: 35px;


}
.loginDiv button:hover{
    background-color: rgba(0,0,0, .25);
    cursor: pointer;
}

.errorMsg {
    color: red;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif; 
    position: absolute;
    font-weight: 200;
    bottom: 0px;
    left: 5px;
    text-align: left;

}


.footer {
    
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(53,144,174);
    overflow: hidden;
    text-align: center;
    height: 100px;
    border-top: 1px solid rgba(0,0,0,.65);
    margin-top: 80px;
  }
.footer p {
    font-size: 18px;
    color: rgb(35,43,43);
    margin-top: 30px;
}
