/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  min-height: 100vh;
  width: 100%;
  background: #e69a2d;
}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 430px;
  width: 100%;
  background: #ffffff;
  border-radius: 7px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.container .registration,
.container .forgot {
  display: none;
}
#check {
  display: none;
}
.container .form {
  padding: 2rem;
}
.form header {
  font-size: 20px;
  font-weight: 20px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.form input,
.form select {
  height: 50px;
  width: 100%;
  padding: 0 15px;
  font-size: 17px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}
.form input:focus,
.form select:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.form input.button {
  color: #fff;
  background: #ed7623;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.4s;
}
.form input.button:hover {
  background: #d6661b;
}
.signup {
  font-size: 17px;
  text-align: center;
}
.signup a {
  color: #ed7623;
  cursor: pointer;
}
.signup a:hover {
  text-decoration: underline;
}
.centered-text {
  text-align: center;
}
.icon-image {
  width: 200px;
  height: auto;
  display: block;
  margin: 30px auto;
}
.regis {
  margin: 20px auto;
}
