  body {
    font-family: Arial, sans-serif;
    background: #f1f3f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
  }

  
  .form-header {
    background: #673ab7;
    height: 8px;
    border-radius: 8px 8px 0 0;
    margin-left: 1rem;
    
    margin-right: 1rem;
  }

  /* Toast notification styles */
  .toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 1;
    transition: opacity 0.5s, bottom 0.5s;
    z-index: 9999;
    font-size: 1rem;
  }
  .toast-notification.hide {
    opacity: 0;
    bottom: 0px;
  }

      .form-container {
    background: transparent;
    margin: 2rem;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
  }

  .form-title {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    background-color: white;
    margin: 1rem;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin-top: 0rem;
  }

  .form-title h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #202124;
  }

  .form-title p {
    margin-top: 0.8rem;
    color: #5f6368;
    font-size: 0.95rem;
  }

  .form-card {
    padding: 1.5rem;
    margin: 1rem;
    background: #fff;
    border-radius: 8px;
  }

  label {
    display: block;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #202124;
  }

  .required {
    color: red;
    margin-left: 3px;
  }

  input, textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #dadce0;
    padding: 0.6rem 0;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: transparent;
  }

  input:focus, textarea:focus {
    border-bottom: 2px solid #673ab7;
    outline: none;
  }

  textarea {
    resize: vertical;
    min-height: 60px;
  }

  button {
    background: #673ab7;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin: 1rem;
  }

  button:hover {
    background: #5b2ca0;
  }

  .footer {
    font-size: 0.75rem;
    color: #5f6368;
    padding: 1rem;
    text-align: center;
  }