:root {
      --primary-green: #519502;
      --secondary-green: #27ae60;
      --white: #ffffff;
      --gray: #f4f4f4;
      --text-dark: #2c3e50;
      --text-light: #7f8c8d;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: var(--gray);
      min-height: 100vh;
    }
#bg{
       background-image: url("../images/background.png");
        background-size: cover;

    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #000000be;
      color: white;
      padding: 15px 30px;
    }

   
    .navbar .center-heading {
      font-size: 1.5    em;
    }

    .navbar .auth-buttons button {
      background-color: var(--white);
      color: #519502;
      border: none;
      padding: 8px 16px;
      border-radius: 5px;
      margin-left: 10px;
      cursor: pointer;
    }

    .navbar .auth-buttons button:hover {
      background-color: #519502;
      color: white;
    }

    .auth-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 0;
      margin-top: 150px;
    }

    .auth-container {
      background-color: var(--white);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 400px;
    }

    .auth-container h2 {
      text-align: center;
      color: #519502;
      margin-bottom: 20px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
    }

   .form-group input {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 16px;
    }

    .form-group button {
      width: 100%;
      padding: 10px;
      background-color: #519502;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 10px;
    }

    .switch-link {
      text-align: center;
      margin-top: 15px;
      color: var(--text-light);
    }

    .switch-link a {
      color: #519502;
      text-decoration: none;
    }

    .switch-link a:hover {
      text-decoration: underline;
    }