/* Registrations new */

.new_registrations_form {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F8FDFF;
  margin: 0;

  div {
    margin: 10px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;

    h2 {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        color: #333;
    }

    form {
      input {
          width: 100%;
          padding: 0.75rem;
          margin-bottom: 1rem;
          border: 1px solid #ccc;
          border-radius: 5px;
          font-size: 1rem;

          &[type="submit"] {
              width: 100%;
              padding: 0.75rem;
              background-color: #BED635;
              color: white;
              border: none;
              border-radius: 5px;
              font-size: 1rem;
              cursor: pointer;
              transition: background-color 0.3s ease;
              &:hover { background-color: #a4c02b }
          }
      }
    }

    a:first-of-type { color: #BED635 }

    a:last-of-type {
      display: block;
      margin-top: 1rem;
      color: #BED635;
      text-decoration: none;
      font-size: 0.9rem;
      &:hover { text-decoration: underline }
    }
  }
}