@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;
}
html,
body {
  height: 100vh;
  width: 100%;
  background: #4DC5F0;
}
.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #DAF0F7;
  width: 540px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}
.wrapper .top {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0784B0;
  height: 180px;
  position: relative;
  border-radius: 12px 12px 0 0;
}
.wrapper .top::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background: #0784B0;
  bottom: -10px;
  transform: rotate(45deg);
}
.wrapper .top i {
  font-size: 80px;
  color: #DAF0F7;
}
.wrapper .bottom {
  padding: 30px;
}
.wrapper .bottom .info {
  font-size: 22px;
  font-weight: 500;
  color: #333;
}
.wrapper .bottom .input-box {
  height: 65px;
  margin: 25px 0 20px 0;
}
.wrapper form .input-box input {
  height: 100%;
  width: 100%;
  padding-left: 14px;
  outline: none;
  font-size: 18px;
  border-radius: 12px;
  font-size: 18px;
  transition: all 0.4s ease;
}
.wrapper .bottom input[type="text"] {
  border: 2px solid #CAE3EB;
}
.wrapper .bottom input[type="text"]:focus,
.wrapper .bottom input[type="text"]:valid {
  border-color: #4DC5F0;
}
.wrapper .bottom input[type="submit"] {
  border: none;
  cursor: pointer;
  background: #4DC5F0;
  color: #DAF0F7;
  letter-spacing: 1px;
}
.wrapper .bottom input[type="submit"]:hover {
  background: #0784B0;
}
.wrapper .bottom .footer {
  font-size: 18px;
  margin-top: 12px;
}
