body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
  }
   
  .form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 400px;
  }
  
  h1 {
    text-align: center;
    color: #2563eb;
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #333;
  }
  
  input, select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 0.3rem;
  }
  
  button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  button:hover {
    background-color: #1d4ed8;
  }
  