

   .form__container {
     position: relative;
     max-width: 75rem;
     margin: 3rem auto; /* test purposes only - set to 0 */
     background: #fff;
     padding: 1rem 1rem 1rem 1rem;
     border-radius: .6rem;
     overflow: hidden;
     /*box-shadow: 0 0 5rem rgba(0, 0, 0, 0.1);*/
     /*box-shadow: 26px 33px 121px 0px rgba(0, 0, 0, 0.4);*/
   }

   /* style the close btn */
   .form__container .close {
     position: absolute;
     top: 2rem;
     right: 2rem;
   }

   .form__title {
     color: #293948;
     font-family: 'Varela Round', sans-serif;
     font-weight: 600;
     text-transform: uppercase;
     text-align: center;
     margin-bottom: 2rem;
   }

   /* flexbox rows */
   .form-row {
     display: -webkit-box;
     display: -webkit-flex;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -webkit-flex-direction: column;
     -ms-flex-direction: column;
     flex-direction: column;
     -webkit-flex-wrap: nowrap;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap;
   }

   /* make it reponsive */
   @media (min-width: 700px) {
     .form-row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
    }
  }

  /* row spacing */
  .form-control1{
   position: relative;
   padding-left: 0.5rem;
   padding-right: 0.5rem;
   -webkit-box-flex: 1;
   -webkit-flex-grow: 1;
   -ms-flex-positive: 1;
   flex-grow: 1;
 }

 fieldset {
   border: 0;
   margin: 0;
   padding: 0;
   margin-bottom: 2rem;
 }

 legend {
   font-family: 'Varela Round', sans-serif;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: .1rem;
   font-size: 1.5rem;
   color: #455a64;
   display: block;
   border: 0;
   padding: 0;
   margin-bottom: 2rem;
   overflow: hidden;
   position: relative;
   width: 100%;
 }


 /* legend divider */
 legend:after {
   content: "";
   width: 100%;
   position: absolute;
   height: 1px;
   top: 0.5rem;
   margin-left: 1rem;
   background: #e8ecef;
 }

 label {
   color: #000000; /*afc7da*/
   display: block;
   font-family: 'Varela Round', sans-serif;
   font-size: .9rem;
   letter-spacing: 0.035rem;
   margin-bottom: .5rem;
 }

 input,
 textarea,
 select {
   /* main */
   display: block;
   height: 2.5rem;
   padding: .7rem 1rem; /* The 6px vertically centers text on FF */
   width: 100%;
   background-color: #fff;
   border: .1rem solid #c7d6de; /*c7d6de*/
   /*border-radius: .5rem;*/
   outline: 0;
   appearance: none;
   box-shadow: 0;
   box-shadow: none;  
   /* typography */
   font-family: 'Nunito', sans-serif;
   font-weight: 400;
   font-size: 1rem;
   margin-bottom: 2rem;
   text-align: left;
   color: #000000;
   line-height: normal;
   /* transition */
   transition: all 0.2s ease-in-out;
   -webkit-transition: all 0.2s ease-in-out;
 }

 select {
   display: inline-block;
   -webkit-appearance: none;
   appearance: none;
   -moz-appearance: window;
   background: url(assets/img/av.png) no-repeat;
   background-size: 15px;
   background-position: right 1.5rem center;
   color: rgba(52, 72, 91, .3);
   font-weight: 400;
 }

 /* style the focus */
 input:focus,
 
 textarea:focus,
 select:focus {
   border: .1rem solid #52a9fd;
   /*ccdfee def0fe brand primary: 4083c4*/
   outline: 0;
 }

 /* style placeholder text */
 input::-webkit-input-placeholder {
   color: rgba(52, 72, 91, .3);
 }
 input::-moz-placeholder {
   color: rgba(52, 72, 91, .3);
 }
 input:-moz-placeholder {
   /* Older versions of Firefox */
   color: rgba(52, 72, 91, .3);
 }
 input:-ms-input-placeholder {
   color: rgba(52, 72, 91, .3);
 }

 /* Remove awkward default styles on some inputs for iOS */
 input,
 textarea {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
 }
 input::-ms-clear, textarea::-ms-clear {
  display: none;
}
.form__buttons button {
 width: 200px;
 height: 45px;
 font-family: 'Varela Round', sans-serif;
 font-size: 11px;
 text-transform: uppercase;
 letter-spacing: 1.5px;
 font-weight: 500;
 color: #fff;
 background-color: #4083c4;
 border: none;
 border-radius: 45px;
 box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
 transition: all 0.3s ease 0s;
 cursor: pointer;
 outline: none;
}
.form__buttons button:hover {
 background-color: #2EE59D;
 box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
 color: #fff;
 transform: translateY(-7px);
}
.form__buttons {
 background: #FFF;
 text-align: center;
 padding-top: 2rem;
 padding-bottom: 2rem;
}

/*img*/

.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 50px auto;
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #cccccc;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit  label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-edit label:after {
  content: "\f040";
  font-family: "FontAwesome";
  color: #757575;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.avatar-upload .avatar-preview {
  width: 100%;
  height: 222px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #f8f8f8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}




