@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body{
  width: 100%;
  height: 100vh;
  background-color: #dad8d8;
  padding-bottom: 20px;
}


/* HEADER */
#header{
  width: 100%;
  height: 20%;
  background-color: #ff4545;
  padding: 15px;
  border-bottom: 3px dashed #221f1f;
}

h1{
  font-size: 28px;
  color: #fff;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="file"],
textarea{
  width: 400px;
  margin-top: 10px;

}

label{cursor: pointer;}

/* FORM CONTAINER */

section{
  width: 800px;
  height: auto;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  top: -32px;
  padding: 20px;
  border-radius: 0.5em;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.form-header{
  text-align: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 25px;
}

.form-header p{
  margin: 0 auto;
  font-weight: 500;
  height: 25px;
  width: 240px;
  border-bottom: 2px solid #ff4545;
  line-height: 10px;
}

.form-title{
  margin-bottom: 18px;
}

.form-body p{
  margin-bottom: 35px;
}

.block{
  display: block;
}

.box-input,
.box-optional,
.box-input-gear{
  margin-bottom: 35px;
}

input{
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 6px;
  color: #7e7b7b;
  cursor: pointer;
}

input:focus{
  outline: none;
  border-color: #32883a;
}

textarea{
  padding: 10px 5px;
  outline: none;
  border-radius: 5px 0 0 5px;
  max-width: 100%;
  max-height: 180px;
}

.box-input-options{
  margin: 0 30px 30px 0;
  width: 400px;
}

.option-list{
  margin-top: 15px;
  columns: 2;
}

.option-list li{
  list-style: none;
  margin-bottom: 10px;
}

.box-input-gear label{
  margin-right: 15px;
}

.box-optional{
  display: inline-block;
  margin: 0 30px 30px 0;
}

.optional-list{
  list-style: none;
}

.btn-submit{
  padding: 12px 15px;
  font-weight: 700;
  background-color: #ff4545;
  color: #fff;
  width: 200px;
  border-radius: 10px;
  border: 2px solid #706c6ca6;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  font-size: 15px;
  transition: 0.5s;
}

.btn-submit:hover{
  border-color: #ff4545;
  color: #ff4545;
  background-color: transparent;
}

.box-submit{
  width: 100%;
  display: flex;
  justify-content: center;
}