/* Reset and general setup */
* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #e6f9f0, #a5d6a7); /* fintech green gradient */
}

/* Page wrapper */
.page {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  padding: 20px;
}

/* Card container */
.card {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* Title */
.title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #0b2a66; /* fintech blue */
  margin-bottom: 20px;
}

/* Labels */
label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0b2a66;
  margin-bottom: 6px;
}

/* Inputs, Select, Textarea */
input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.8px solid #00c853; /* fintech green */
  border-radius: 12px;
  font-size: 14px;
  background: #fff;
  margin-bottom: 14px;
  transition: border-color 0.3s, box-shadow 0.25s, transform 0.25s;
  appearance: none;
  cursor: pointer;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #00c853;
  box-shadow: 0 0 8px rgba(0,200,83,0.2);
  transform: scale(1.02);
}

textarea {
  min-height: 120px;
  resize: none;
}

/* Buttons */
.btn {
  width: auto;
  min-width: 180px;
  padding: 12px 18px;
  background: linear-gradient(90deg, #00c853 0%, #64dd17 100%); /* fintech green gradient */
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin: 12px auto;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.btn.outline {
  background: #fff;
  color: #00c853;
  border: 2px solid #00c853;
}

.btn.outline:hover {
  background: linear-gradient(90deg, #00c853 0%, #64dd17 100%);
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .title {
    font-size: 22px;
  }

  .card {
    padding: 20px;
  }

  .btn {
    min-width: 150px;
  }

  .page {
    padding: 30px 14px;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card-btn {
    padding: 16px;
  }
}