.form {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 400px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 250px;
    padding: 12px 10px;
    margin: 8px 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
  }
  
  button {
    width: 100%;
    padding: 12px;
    background-color: #ff9900;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #e68a00;
  }
  
  /* Link below the form */
  p {
    margin-top: 15px;
    font-size: 14px;
  }
  
