/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Resetting default styling and setting font-family */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
body {
    width: 100%;
    min-height: 100vh;
    padding: 0 10px;
    display: flex;
    background: #5c6641;
    justify-content: center;
    align-items: center;
}
/* Login form styling */
.login_form {
    width: 100%;
    max-width: 435px;
    background: #fff;
    border-radius: 6px;
    padding: 41px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.login_form h3 {
    font-size: 20px;
    text-align: center;
}
/* Google & Apple button styling */
.login_form .login_option {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.login_form .login_option .option {
    width: calc(100% / 2 - 12px);
}
.login_form .login_option .option a {
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #F8F8FB;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    margin: 34px 0 24px 0;
    text-decoration: none;
    color: #171645;
    font-weight: 500;
    transition: 0.2s ease;
}
.login_form .login_option .option a:hover {
    background: #ededf5;
    border-color: #5c6641;
}
.login_form .login_option .option a img {
    max-width: 25px;
}
.login_form p {
    text-align: center;
    font-weight: 500;
}
.login_form .separator {
    position: relative;
    margin-bottom: 24px;
}
/* Login option separator styling */
.login_form .separator span {
    background: #fff;
    z-index: 1;
    padding: 0 10px;
    position: relative;
}
.login_form .separator::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    height: 1px;
    background: #C2C2C2;
    display: block;
}
form .input_box label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}
/* Input field styling */
form .input_box input {
    width: 100%;
    height: 57px;
    border: 1px solid #DADAF2;
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 17px;
    padding: 0px 20px;
    margin-bottom: 25px;
    transition: 0.2s ease;
}
form .input_box input:focus {
    border-color: #5c6641;
}
form .input_box .password_title {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
form .input_box {
    position: relative;
}
a {
    text-decoration: none;
    color: #5c6641;
    font-weight: 500;
}
a:hover {
    text-decoration: underline;
}
/* Login button styling */
form button {
    width: 100%;
    height: 56px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #5c6641;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 28px;
    transition: 0.3s ease;
}
form button:hover {
    background: #faf2b4;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d3f0c2;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    /* Add this: */
.top-nav .menu-toggle {
    margin-left: auto;
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #2e7d32;
}


    .top-nav .logo-container {
      display: flex;
      align-items: center;
    }

    .top-nav img.logo {
      height: 40px;
      margin-right: 10px;
    }

    .top-nav .logo-text {
      font-size: 1.4rem;
      font-weight: bold;
      color: #2e7d32;
    }

    .top-nav .nav-buttons {
      display: flex;
      gap: 12px;
    }

    .top-nav .nav-buttons a {
      text-decoration: none;
      padding: 8px 16px;
      border: 1px solid #2e7d32;
      color: #2e7d32;
      border-radius: 6px;
      font-weight: 500;
      transition: all 0.3s;
    }

    .top-nav .nav-buttons a:hover {
      background-color: #2e7d32;
      color: white;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .top-nav .nav-buttons {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        right: 20px;
        top: 60px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 10px;
      }

      .top-nav .nav-buttons.show {
        display: flex;
        flex-direction: column;
      }

      .menu-toggle {
        display: block;
        color: #2e7d32;
      }
    }
    
    .logo-container a.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-container .logo-link .logo-text {
  color: #2e7d32;
}

