body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    margin-top: 70px; 
}

.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.landing-container .welcome-section {
    max-width: 400px;
}

.landing-container .welcome-section h1 {
    margin-bottom: 1rem;
}

.landing-container .welcome-section .auth-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.landing-container .welcome-section .auth-buttons .auth-button {
    padding: 0.2rem 0.9rem;
    background-color: #78944c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
}

.landing-container .welcome-section .auth-buttons .auth-button:hover {
    background-color: darken(#78944c, 10%);
}

.landing-container .welcome-section .auth-buttons .auth-button.signup {
    background-color: #567d46;
}

.landing-container .welcome-section .learn-more {
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
    margin: 4rem 0;
}

.landing-container .about-section {
    max-width: 400px;
}
  
.landing-container .about-section h2 {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 auto;
    text-align: center;
}

.landing-container .about-section .about-text {
    margin: 1rem 0;
}
  
.landing-container .about-section .trees-image {
    max-width: 400px;
    height: auto;
    margin: 1rem auto;
    display: block;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    max-width: 300px;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 20px;
}

form {
    text-align: left;
}

label {
    display: block;
    margin-bottom: 10px;
}

input,
textarea,
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.password-container {
    position: relative;
}

.password-container input {
    padding-right: 40px; /* Add padding to the right to make space for the eye icon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d; /* Optional: Add a color for the eye icon */
}

.toggle-password:hover {
    color: #495057; /* Optional: Change color on hover */
}

/* .navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%; 
} */

/* .navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
} */

/* .navbar a:hover {
    background-color: #ddd;
    color: black;
} */
