@import url('https://fonts.googleapis.com/css?family=Josefin+Sans');

/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: 'Josefin Sans', sans-serif;
}

body{
  background: #5f5a43;
} */

#error_message{
    margin-top: 10px;
  margin-bottom: 10px;
  background: #b38d8e;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  transition: all 0.5s ease;
}
/* .closepopup{
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
    font-size: 20px;
}   */
/* .overlay-form {
    display: none;
    position: fixed;
    padding: 5%;
    width: 40%;
    left: 23%;
    height: 50%;
    top: 10%;
    overflow-y: scroll;
    background: rgba(255, 255, 255, 0.801);
    z-index: 50;
  } */
  
#myform {
  /* border: 2px solid blue; */
  width: 80%;
  left: 0;
  right: 0;
  top: 10%;
  /* bottom: 0; */
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}

#myform button {
  float: right;
  padding: 5px;
  border: 0.5px solid rgb(100, 100, 100);
  border-radius: 4px;
}

#myform button:hover {
  cursor: pointer;
  background-color: rgba(128, 128, 128, 0.418);
}


input[type=text], select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 6px;
    margin-bottom: 10px;
    /* border: 2px solid red; */
}
textarea {
    resize: none;
}