/* Base form container */
._main-form {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
}
.register-form {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.form__title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  background-color: red;
  color: white;
  margin-bottom: 20px;
}

/* Input blocks */
.input-block {
  width: 100%;
  margin-bottom: 5px;
}

.input-block input {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  border: 2px solid #bbbbbb;
  border-radius: 10px;
  outline: none;
  transition: 0.2s ease;
}

.input-block input::placeholder {
  color: #8c8c8c;
}

.input-block input:focus {
  border-color: #bbbbbb;
}

/* Phone field visually similar to screenshot */
.input-block-phone {
  display: flex;
  /* gap: 10px; */
}

/* Submit button */
.buttonSend {
  width: 100%;
  padding: 30px;
  background: #0092ed !important;
  color: white;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.buttonSend:hover {
  background: #161b46;
}

/* Error messages */
.form-error {
  color: #d10000;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}
