@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

header {
    margin: 5px;
    height: 15vh;
    border-radius: 17px;
    border: 1px solid #28376a;
    background-color: #28376a;
}

#logoImage {
    width: 160px;
    height: 50px;
    float: left;
    margin-top: 15px;
    margin-left: 10px;
}

nav {
    float: right;
    margin: 20px 25px 0px;
    background-color: #28376a;
}

a {
    color: #eeeeee;
    font-family: 'Abel', sans-serif;
  }

nav li {
    list-style: none;
    display: inline;
    margin-right: 30px;
}

nav li a:hover {
    color: #cf566a;
}


nav  li a {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Abel', sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    background: #27386a;
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 25px;
    box-shadow: 0 0 20px 0 rgba(85, 85, 85, 0.2);
}
h3{
    text-align: center;
}

form h3{
    color: #555;
    font-weight: 800;
    margin-bottom: 20px;
}

form input, form textarea{
    border: 0;
    border-radius: 10px;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;
}

form button{
    padding: 10px;
    background:  #cf566a;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;

}
@media screen and (max-width: 500px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    .header-right {
      float: none;
    }
    #logoImage{
    width: 60px;
    height: auto;
    float: left;
   
    }
  }
footer {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 50px;
    width: 100%;
    height: 40px;
    background-color: #28376a;
    color: white;
    text-align: center;
}
footer p{
    padding-top: 10px;
}