/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color:#000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
  }
  
  /* Logo */
  .logo {
    margin-bottom: 20px;
  }
  .logo img {
    max-width: 300px;
    height: auto;
  }
  
  /* Form container */
  form {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
  }
  
  /* Form heading */
  form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
  }
  
  /* Labels and inputs */
  label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #333;
  }
  
  input,
  textarea,
  select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
    font-size: 14px;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #4a90e2;
    outline: none;
  }
  
  /* Submit button */
  button[type="submit"] {
    display: block;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin-top: 25px;
    background-color: #4a90e2;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #357abd;
  }
  
  /* Error messages */
  .error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    body {
      padding: 20px 10px;
    }
  
    form {
      padding: 20px;
    }
  
    .logo img {
      max-width: 100px;
    }
  }
  