@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E3F2FD !important;
}

.wrapper {
  position: relative;
  max-width: 430px;
  width: 100%;
  background: #fff;
  padding: 34px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.wrapper:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.wrapper h2 {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}

.wrapper h2::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  height: 3px;
  width: 40px;
  border-radius: 12px;
  background: #1E88E5;
  transform: translateX(-50%);
}

.wrapper form {
  margin-top: 30px;
}

.wrapper form .input-box {
  height: 52px;
  margin: 18px 0;
}

form .input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  border: 1.5px solid #C7BEBE;
  border-bottom-width: 2.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.input-box input:focus,
.input-box input:valid {
  border-color: #1E88E5;
}

form .policy {
  display: flex;
  align-items: center;
}

form h3 {
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}

.input-box.button input {
  color: #fff;
  letter-spacing: 1px;
  border: none;
  background: linear-gradient(135deg, #1E88E5, #1565C0);
  cursor: pointer;
  border-radius: 6px;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.input-box.button input:hover {
  background: linear-gradient(135deg, #1565C0, #0D47A1);
}

form .text h3 {
  color: #333;
  width: 100%;
  text-align: center;
}

form .text h3 a {
  color: #1E88E5;
  text-decoration: none;
  font-weight: 500;
}

form .text h3 a:hover {
  text-decoration: underline;
}
