/* General form styling */


form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #bdb2ff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: #333 2px solid;
  }
  
  form label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }
  
  form input,
  form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
  }
  
  form input:focus,
  form select:focus {
    border-color: #007BFF;
    outline: none;
  }
  
  form button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  form button:hover {
    background-color: #0056b3;
  }
  
  @media (max-width: 768px) {
    form {
      padding: 15px;
    }
    
    form label {
      font-size: 14px;
    }
  
    form input,
    form select {
      font-size: 14px;
    }
  
    form button {
      font-size: 16px;
    }
  }
  