body {
  font-family: "Comfortaa", sans-serif;
}

.form-input {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

input {
  padding: 12px;
  border: solid 1px #E8E8E8;
  border-radius: 4px;
}

textarea {
  padding: 12px;
  border: solid 1px #e4e0e0;
  border-radius: 4px;
  height: 48px;
}

label {
  font-family: Comfortaa, sans-serif;
  font-size: 12px;
  color: #26292A;
  font-weight: 700;
  margin-bottom: 7px;
}

button {
  background-color: #36c1cc;
  border: solid 1px #36c1cc;
  padding: 7px 15px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-family: Comfortaa, sans-serif;
  height: 45px;
  width: 100%;
  transition-duration: 0.3s;
  position: relative;
}
button:hover {
  background-color: #745483;
}
.form-section {
  position: relative;
}
.loader-sec {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.69);
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-sec img {
  position: relative;
  top: -25%;
}
.success-sec {
  position: fixed;
  left: 0;
  right: 0;
  top: 30%;
  width: 18rem;
  border-radius: 5px;
  z-index: 99;
  margin: 0 auto;
  background-color: white;
  text-align: center;
  padding: 15px;
  visibility: hidden;
  height:105vh;
}
.success-sec p {
  font-size: 13px;
  color: #515c74;
}
.success-sec h3 {
  font-weight: 600;
  color: rgb(66, 121, 66);
}
.success-sec.active {
  transition: 1s;
  top: 10%;
  visibility: visible;
}
#bg2 {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.69);
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}
.browse-sec {
  position: relative;
}
.attach-file input {
  position: absolute;
  right: 0;
  width: 0;
  border: 0;
  padding: 0;
  height: 40px;
  cursor: pointer;
  pointer-events: none;
}
.attach-file {
  position: absolute;
  transform: translate(0%, 19%);
  right: 6px;
  top: 19px;
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  height: 32px;
  border-radius: 3px;
  background-color: #36c1cc;
}
.error-Sec {
  width: 70%;
  border: solid 1px #d1d1d1;
  height: auto;
  background-color: rgb(253 235 235);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  padding: 7px 13px;
  border-radius: 3px;
  display: none;
}
.error-Sec p {
  margin: 0;
  font-size: 9px;
  color: red;
  font-weight: 700;
}
