body {
    font-family: "Helvetica Neue", sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none !important;
  }
  
  .auth-container {
    max-width: 400px;
    margin: 60px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
  }
  .auth-container p{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .auth-container p a{
    display: block;
    font-size: 16px;
    color: #333;
    text-decoration: none;
  }
  .auth-container p a:last-child{
    margin-left: 20px;
  }
  
  .auth-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    margin-top: 40px;
  }
  
  .auth-form .form-group {
    margin-bottom: 20px;
  }
  
  .auth-form label {
    display: block;
    margin-bottom: 6px;
    color: #444;
  }
  
  .auth-form input[type="text"],
  .auth-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  .auth-form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-sizing: border-box;
  }
  
  .auth-form button:hover {
    background-color: #0056b3;
  }