body {
  background-color: #eeeeee;
}


#container{
   margin-top: 80px; 
}
#main {
  /* margin-top: 80px; */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  /* border: 2px solid; */
  margin: auto;
  margin-bottom: 30px;
  width: 40%;
  padding: 16px 20px;
  background-color: white;
}

#welcome_note {
  font-size: large;
  text-align: center;
  color: lightgrey;
}

#content {
  display: grid;
  margin: auto;
  margin: 10px 20px 30px;
}
#content > input {
  margin: 10px 20px 10px;
  border-top: none;
  border-left: none;
  border-right: none;
  border: 0;
  padding: 7px 0;
  border-bottom: 1px solid #ccc;
}

#agree {
  /* border: 2px solid; */
  font-family: sans-serif;
  font-size: 10px;
  margin: auto;
  text-align: center;
  margin-left: 20px;
}
#agree > b {
  color: red;
  
}

#phone {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  margin: 10px 10px 5px;
}
#phone > div > input {
  padding-right: 60px;
  margin-top: -2px;
  margin-right: 120px;
  border-top: none;
  border-left: none;
  border-right: none;

  border: 0;
  padding: 7px 0;
  border-bottom: 1px solid #ccc;
}

#submit {
  text-align: center;
  display: flex;
  align-items: center;
  margin: auto;
  width: 100%;
  text-align: center;
  
}
#submit > button {
  width: 100%;
  padding: 10px;
  background-color: red;
  color: white;
  font-family: sans-serif;
  border-radius: 20px;
  border: none;
}

.button:active:after {
  box-shadow: 0 0 0 0 rgb(212, 24, 24);
  position: absolute;
  border-radius: 4em;
  left: 0;
  top: 0;
  opacity: 1;
  transition: 0s;
}

.button {
  position: relative;
  background-color: black;
  border-radius: 4em;
  font-size: 16px;
  color: rgb(224, 27, 27);
  padding: 0.8em 1.8em;
  cursor: pointer;
  user-select: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s; /* Safari */
}

.button:hover {
  transition-duration: 0.1s;
  background-color: #3a3a3a;
}

.button:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 4em;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
  box-shadow: 0 0 10px 40px white;
}

select{
  padding-top:5px;
  border:solid white;
  text-align: center;
}
