* {
  box-sizing: border-box;
}

body {
  background: #446d76;
  width: 50%;
  margin: auto;
}

.remind_container {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 5px 8px 8px #000000;
  margin-top: 200px;
}

.remind_container >h1 {
  text-align: center;
  margin: 0px;
  margin-top: 10px;
  margin-bottom: 7px;
  color: #446d76;
}

form {
  padding: 8px;
}

input[type=email],
input[type=text],
input[type=number],
input[type=password]{
  width: 100%;
  border: none;
  border-bottom: 1px solid #446d76;
  font-size: 15pt;
  outline: none;
  margin-top: 30px;
  padding: 8px;
}

.btnCase {
  padding: 8px;
}

button {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  background-color: #fff;
  border: 2px solid #446d76;
  border-radius: 3px;
  color: #446d76;
  font-size: 13pt;
  font-weight: bold;
}

p {
  text-align: center;
  color: rgb(186, 186, 186);
  font-size: 11pt;
}

#line {
  width: 100%;
  height: 1px;
  background: #446d76;
}

::placeholder {
  color: #868686;
  font-size: 14pt;
}

@media only screen and (max-width: 600px) {
  body {
    width: 95%;
  }
  .remind_container {
    margin-top: 110px;
  }

  p {
    font-size: 0.9rem;
    margin-top: 25px;
  }
}
