@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
} 

body{
  background-color:  #ea8069;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

body::before{
  content: '';
  position:fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

h1{
  font-weight: 400;
  line-height: 1.2;
}

p {
  font-size: 1.125rem;
}

h1, p{
  margin-top: 0;
  margin-bottom: 0.5rem;
}
label{
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;

}

button{
  border: none;
}
.container{
  width: 100%;
  margin: 3.125rem auto 0 auto;

}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

.header {
  padding: 0 0.625rem;
  margin-bottom: 1.875rem;
}

.description {
  font-weight: 200;
}
#description{
  text-align: center;
}
.text-center {
  text-align: center;
}

/* Form */

form{
  background: white;
  padding: 3.5rem 2.5rem;
  border-radius: 0.45rem;
  margin-bottom: 350px;
 
}

@media (min-width: 480px) {
  form {
    padding: 2.5rem;
  }
}


.form-group{
  margin: 0 auto 1.25rem auto;
  padding: 0.3rem;
}

.form-control{
  display: block;
  width: 100%;
  height: 2.3 rem;
  padding: 15px;
  border: 2px solid #833FFF;
  border-radius: 5px;
  font-size: 14px;
}

.form-control:focus{
    border-color: #FFBF00;
    outline: 0;
}

.input-radio,
.input-checkbox{
  display: inline-block;
  margin-right: 20px;
  min-height: 1.25rem;
  min-width: 1.35rem; 
}

.input-textarea {
  min-height: 120px;
  width: 100%;
  padding: 0.625rem;
  resize: vertical;
  font-family: inherit;
}

button{
  background-color: #8e44ad;
	border: 3px solid #000;
	border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 16px;
	padding: 10px;
	margin-top: 20px;
	width: 100%;
  
}

#dropdown{
  	padding: 10px;
    width: 40%;
}

