/* Container box */
.styled_form_box {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
}

/* Title */
.reset_title {
  margin: 0 0 0px 0;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

/* Each input block */
.input_group {
  margin-bottom: 18px;
}

/* Shared input styling */
.styled_input_box {
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  font-size: 15px;
  background: #fafafa;
  transition: border 0.2s ease, background 0.2s ease;
}

.styled_input_box:focus {
  border-color: #3b9cf0;
  background: #fff;
  outline: none;
}

/* Button container */
.button_group {
  margin-top: 25px;
}

/* Primary button (use your black email button style) */
.primary_button {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.primary_button:hover {
  background: #222;
}
