/* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #42373f;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('greener.jpg') no-repeat center center/cover;
  }

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

  /* Login Box Styling */
  .login-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%;
  }

  .login-box h2 {
    margin: 0 0 20px;
    color: #42373f;
    text-align: center;
  }

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

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

  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[type="text"]:focus,
  input[type="password"]:focus {
    border-color: #869979;
    outline: none;
  }

  /* Button Styling */
  .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;
  }

  /* Link Styling */
  .login-box .forgot-password {
    text-align: center;
    margin-top: 10px;
  }

  .login-box .forgot-password a {
    color: #42373f;
    text-decoration: none;
  }

  .login-box .forgot-password a:hover {
    text-decoration: underline;
  }

  .login-footer {
    text-align: center;
    margin-top: 15px;
  }

  .login-footer a {
    color: #a74930;
    text-decoration: none;
  }

  .login-footer a:hover {
    text-decoration: underline;
  }

  .loginbtn{
    
    text-align: center;
    
  }
