* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 400px;
  padding: 30px 20px;
}

/* Back */
.back {
  font-size: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}
/* Banner */
.banner {
  background: linear-gradient(135deg, #1e90ff, #2563eb);
  padding: 18px 25px;
  border-radius: 12px;
  color: #fff;
  margin-bottom: 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-text {
  text-align: left;
}

.banner h1 {
  font-size: 22px;
}

.banner .subtitle {
  font-size: 13px;
  margin-top: 6px;
  color: #eaf1ff;
}

.banner-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}


/* Input Group */
.input-group {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  margin-bottom: 18px;
  transition: 0.3s ease;
  position: relative;
}

/* Blue bottom line */
.input-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 0;
  height: 2px;
  background: #1e66f5;
  transition: 0.3s ease;
}

/* Focus Effect */
.input-group:focus-within {
  border-color: #1e66f5;
  box-shadow: 0 8px 22px rgba(30, 102, 245, 0.25);
}

.input-group:focus-within::after {
  width: calc(100% - 40px);
}

/* Icon */
.input-group i {
  color: #999;
  margin-right: 10px;
  transition: 0.3s;
}

.input-group:focus-within i {
  color: #1e66f5;
}

/* Input */
.input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

/* Button */
.btn {
  width: 100%;
  background: #1e66f5;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background: #155ac4;
}

/* Terms */
.terms {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

.terms span {
  color: #1e66f5;
}