/* CSS files add styling rules to your content */

body {
  font-family: Roboto, helvetica, arial, sans-serif;
  margin: 2em;
  background-color: #eee;
  color: #999;
  min-width: 320px;
  height: 94vh;
  background-image: linear-gradient(to left bottom, #fefefe, #fafafa, #f6f6f6, #f2f2f2, #eeeeee);
    /* background-image: linear-gradient(to right top, #fefefe, #fafafa, #f6f6f6, #f2f2f2, #eeeeee);*/
}

.main {
  /* background-color: snow; */
  background-color: #fff;
  border-radius: 5px;
  padding: 25px;
  position: relative;
  box-shadow: 0 9px 30px 5px rgba(153,153,153,.2);

}

.banner {
  /* background-image: url('https://cdn.glitch.com/dc089a51-75e0-451c-9bf7-f055b33aa7fa%2FbannerA.jpg?v=1581465850779'); */
  background-image: url('bannerA.jpg');
  /* background-size: cover; */
  background-size: auto;
  background-position: bottom;
  background-position: 83% 100%;
  height: 600px;
  padding: 0px;
  border-radius: 7px;
  position: relative;
  margin: -25px;
  position: relative;
  /* width: 100%; */  
}

.banner:after {
  content: ' ';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  background-color: rgba(127, 255, 212, 0.35);
  z-index: 1;
  border-radius: 7px;
}

.banner--text {
  padding: 25px;
  position: relative;
  z-index: 2;
  color: #fff;
}

.banner--text-site {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 115px;
  /* border-bottom: 2px solid #fff; */
  display: inline-block;
  text-shadow: 1px 1px 5px rgba(51, 51, 51, 0.8);
}

.banner--text-heading {
  color: #fff;
  /* font-style: normal; */
  width: 50%;
  font-size: 4rem;
  font-weight: 600;
  text-shadow: 1px 1px 5px rgba(51, 51, 51, 0.8);
}

.banner--wavy {
  position: absolute;
  width: 100%;
  bottom: -2px;
  left: 0px;  
  z-index: 2;
}

.content {
    position: relative;
    z-index: 2;
    margin-top: -469px;
}

.content--text {
  margin-top: 85px;
}

.content--form-box {
  /* border: 1px solid #ccc; */
  border-radius: 10px;
  box-shadow: 0 0 45px 10px rgba(34,34,34,.08);
  box-shadow: 0 -3px 10px rgba(0,0,0,.23), 0 -3px 10px rgba(0,0,0,.16);
  padding: 30px 25px;
  /* margin-left: 25px; */
  overflow: hidden;
  position: relative;
  /* top: -469px; */
  background: #fff;  
}

.content--form-box:before {
  content: ' ';
  position: absolute;
  /* width: 200%; */
  width: 150%;  
  /* height: 100%; */
  height: 210px;
  /* left: -2px; */
  left: -100px;  
  /* top: 0px;     */
  top: -35px;
  /* background-image: url(form-box-back.svg);
  background-repeat: no-repeat; */
  opacity: 0.85;
  background: #1e7e34;
  border-radius: 100%;
}

.content--form-box--header {
  text-align: center;
  /* padding: 30px 15px; */
  /* background: green; */
  margin: 0;
  margin-bottom: 90px;
  /* font-size: 1.25rem;
  font-weight: 600; */
  color: #fff;
  position: relative;
}

.content--form-box--header--heading {
  /* font-size: 1.25rem; */
  font-weight: 600;
}

.content--form-box--form label {
  font-size: 0.89rem;
}
.content--form-box--form--required:after {
  content: '*';
  margin-left: 3px;
  color: indianred;
}

.content--form-box--form .form-control {
  font-size: 0.88rem;
}
.content--form-box--form--button {
  text-align: center;
  margin-top: 35px;
}

.content--form-box--form--button .btn {
  background-color: #379484;
  border: #379484;
  width: 200px;
}

.content--form-box--form--button .btn:hover,
.content--form-box--form--button .btn:active,
.content--form-box--form--button .btn:focus,
.content--form-box--form--button .btn:not(:disabled):not(.disabled):active {
  background-color: darkolivegreen;
  border: darkolivegreen;
}


@media screen and (max-width: 992px) {
  .banner {
    background-position: 83% 100%;
  }

  .banner--text-site {
    margin-bottom: 69px;
  }
    .banner--text-heading {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .banner--text-heading {
    width: 100%;
  }

  .content {
    margin-top: -250px;
  }
}

@media screen and (max-width: 350px) {
  .banner--text-site {
    margin-bottom: 30px;
  }
}

/* h1 {
  font-style: italic;
  color: #6b6b6b;
} */
