.background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FF9900;
    background-position: center;
    background-size: cover;
  }

  .form-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  }

  h2 {
    text-align: center;
    color: #FF9900;
    margin-bottom: 20px;
  }

  form {
    display: flex;
    flex-direction: column;
  }

  label {
    font-size: 16px;
    color: #FF9900;
    margin-bottom: 5px;
  }

  input[type="text"], input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
  }

  input:focus {
    border-color: #FF9900;
    outline: none;
  }

  .name-fields, .address-fields {
    display: flex;
    gap: 10px;
  }

  .name-fields input, .address-fields input {
    flex: 1;
  }

  .register-button {
    background-color: #FF9900;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }

  .register-button:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  }