/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  font-family: "Poppins", sans-serif;
}

/* Main Card */
.container {
  width: 100%;
  max-width: 460px;
  padding: 35px 32px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.5s ease-in-out;
}

/* Heading */
h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #d35400;
  margin-bottom: 25px;
}

/* Labels */
.form-label {
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

/* Inputs */
.form-control {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #ffb48a;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #e67e22;
  box-shadow: 0 0 8px rgba(230, 126, 34, 0.4);
  outline: none;
}

/* Helper Text */
.form-text {
  font-size: 13px;
  color: #777;
}

/* Button */
.btn-primary {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  font-weight: 700;
  font-size: 18px;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

/* Small screens */
@media (max-width: 480px) {
  .container {
    padding: 25px 20px;
  }

  h1 {
    font-size: 28px;
  }
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
