body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 400px;
  margin: 50px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
h2 {
  text-align: center;
  margin-bottom: 20px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ced4da;
}
button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #00b894, #55efc4);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}
button:hover {
  background: linear-gradient(to right, #00cec9, #81ecec);
}
.link {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
}
.input-box {
  width: 100%;
  
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-sizing: border-box;
  margin: 10px 0;
  outline: none;
  transition: border 0.3s;
}

.input-box:focus {
  border-color: #38b6ff; /* light blue border on focus */
}

.form-input {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  display: block;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #3ebd93; /* Greenish highlight on focus */
}

.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}