/* @import url('https://fonts.googleapis.com/css?family=Josefin+Sans'); */
:root {
    --primary: #4761FF;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}
/* #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
} */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: 'Josefin Sans', sans-serif;
}


.fw-medium {
    font-weight: 500;
}


/*** Button ***/
.btnp {
    transition: .5s;
    font-weight: 500;
}

.btnp-primary,
.btnp-outline-primary:hover {
    color: var(--light);
}

.btnp-secondary,
.btnp-outline-secondary:hover {
    color: var(--dark);
}

.btnp-square {
    width: 38px;
    height: 38px;
}

.btnp-sm-square {
    width: 32px;
    height: 32px;
}

.btnp-lg-square {
    width: 48px;
    height: 48px;
}

.btnp-square,
.btnp-sm-square,
.btnp-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}



.form-wrapper{
    position:relative;
    height: auto;
    max-width: 345px;
    width: 100%;
    background: #fad5d5;
    margin-top: 50px;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 4px 4px 2px rgba(254,236,164,1);  
}

.form-wrapper h2{
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #332902;
}

.form-wrapper .input_field{
  margin-bottom: 10px;
}

.form-wrapper .input_field input[type="text"], .option,
.form-wrapper textarea{
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  width: 100%;
  padding: 7px;
  color: #c5bebe;
}

.form-wrapper textarea{
  resize: none;
  height: 80px;
}

.form-wrapper .btnf input[type="submit"]{
   
  border: 0px;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  align-items: center;
  width: 100%;
  background: #fece0c;
  color: #332902;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
}

.btnf:hover{
  color: #fe8b8e;
}
#error_message{
  margin-bottom: 20px;
  background: #fe8b8e;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  transition: all 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }

  .container{
    /* background-color: #fe8b8e; */
    height: auto;
    margin-bottom: 1em;
  }