* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

section {
  
  max-height: 100vh;
  width: 90%;
  font-family: "Montserrat";
  background-color:#ceefec;
  display: flex;
  
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0px 0px 20px #00000010;
  background-color:lightgray;
  border-radius: 8px;
  margin-bottom: 20px;
}
.form-group {
  width: 100%;
  margin-top: 20px;
  font-size: 20px;
}
.form-group input,
.form-group textarea {
  width: 80%;
  padding: 5* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat";
  background: #6065d323;
}
.mx-auto {
  height: 100vh;
  width: 100%;
  background-color: aliceblue;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0px 0px 20px #00000010;
  background-color: white;
  border-radius: 8px;
  margin-bottom: 20px;
}
.form-group {
  width: 100%;
  margin-top: 20px;
  background-color: #d3d3d335;
  font-size: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;px;
  font-size: 18px;
  border: 1px solid rgba(128, 128, 128, 0.199);
  margin-top: 5px;
}

textarea {
  resize: vertical;
}
.btn {
  width: 100%;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 24px;
  border-radius: 8px;
  font-family: "Montserrat";
  color: rgb(27, 166, 247);
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s  background-color;
}
.btn:hover {
  background-color: rgb(214, 226, 236);
}
		     #status {
		  width: 90%;
		  max-width: 500px;
		  text-align: center;
		  padding: 10px;
		  background: transparent;
		  margin: 0 auto;
		  border-radius: 8px;
		} */
 #status.success {
  background-color: rgb(154,217,60);
  animation: status 4s ease forwards;
}
#status.error {
  background-color: red;
  color: white;
  animation: status 4s ease forwards;
}
@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    display: none;
  }
}
.divimg{
  background:rgba(0,0,0,0.007);
}