/* Button Container */
.btn-group {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

/* New Window Layout Styling */
.form-page-body {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  background-color: #0f1026; /* Matches your site background */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  box-sizing: border-box;
}

/* Card Container */
.form-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

/* Typography */
.form-title {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  color: #1a1a2e;
  text-align: center;
}

.form-subtitle {
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: #666666;
  text-align: center;
}

/* Form Inputs */
.standalone-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.standalone-form input,
.standalone-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}

.standalone-form input:focus,
.standalone-form textarea:focus {
  border-color: #e91e63;
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}