/* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #42373f;
  }

  /* Center the reset container */
  .reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  /* Reset Box Styling */
  .reset-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
  }

  .reset-box h2 {
    margin-bottom: 20px;
    color: #42373f;
  }

  /* Input Field Styling */
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }

  label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #46555b;
    border-radius: 4px;
    background-color: #f9f9f9;
    color: #42373f;
  }

  input:focus {
    border-color: #869979;
    outline: none;
  }

  /* Submit Button */
  .btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #869979;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
  }

  .btn:hover {
    background-color: #46555b;
  }

  /* Error Message */
  .error-message {
    color: #42373f;
    background-color: #f9f9f9;
    border: 1px solid #869979;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    display: none; /* Hidden by default */
  }

  .footer {
    text-align: center;
    margin-top: 15px;
  }
  
  .footer a {
    color: #a74930;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }