body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #7ac043; /* Main background color */
    color: #000;
}

header {
    background-color: #7ac043; /* Match header with body */
    padding: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 1;
}

.logo {
    width: 150px; /* Adjust as needed */
}

.login-container {
    flex: 1;
    text-align: right;
}

.input-group {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start; /* Align items at the start */
}

.username-container {
    display: flex;
    flex-direction: column; /* Stack username and checkbox vertically */
    margin-right: 10px; /* Space between username container and password/button */
}

.password-container {
    display: flex;
    align-items: center; /* Align password field and button vertically */
}

.input-field {
    border-radius: 20px;
    padding: 10px;
    margin: 5px 0; /* Adjust vertical margin */
    border: 1px solid #ccc;
    width: 150px; /* Set a fixed width for uniformity */
}

.login-button {
    border-radius: 20px; /* Keep rounded edges */
    padding: 10px; /* Adjust padding for a smaller button */
    border: none;
    background-color: #7ac043; /* Darker shade for contrast */
    color: white;
    cursor: pointer;
    margin-left: 5px; /* Space between password field and button */
    font-size: 16px; /* Adjust font size as needed */
    width: 40px; /* Set a fixed width for a compact button */
}

.remember-me {
    margin-top: 5px; /* Space between the username field and remember me */
    display: flex;
    align-items: center;
}

.small-link {
    display: block; /* Stack links vertically */
    margin-top: 5px; /* Space between links */
    font-size: 12px;
    color: #000; /* Link color */
    text-decoration: none;
}

.register-link {
    margin-top: 5px; /* Space above register link */
}

.navigation {
    background-color: #7ac043; /* Green background */
}

.nav-content {
    background-color: #7ac043; /* White background for nav */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.navigation li {
    margin: 0 10px; /* Small gap between buttons */
}

.navigation a {
    text-decoration: none;
    color: #000; /* Black text */
    background-color: #fff; /* White background for buttons */
    padding: 10px 15px;
    border-radius: 20px; /* Rounded edges for buttons */
    transition: background-color 0.3s; /* Smooth hover effect */
}

.navigation a:hover {
    background-color: #f0f0f0; /* Light gray on hover */
}

.search-form {
    display: flex;
}

.search-field {
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    width: 200px; /* Set a fixed width for the search field */
}

.search-button {
    border-radius: 20px;
    padding: 10px;
    border: none;
    background-color: #7ac043;
    color: white;
    cursor: pointer;
}

.welcome-section {
    background-color: #377c00;
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-text {
    max-width: 50%; /* Control the width of the text */
}

.journal-image {
    max-width: 400px; /* Adjust as needed */
    height: auto;
}

footer {
    background-color: #7ac043;
    padding: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share,
.updates {
    width: 48%;
}
.social-icons {
    background-color: white; /* White background */
    padding: 10px; /* Add padding around the icons */
    border-radius: 10px; /* Optional: rounded corners for aesthetics */
    display: inline-flex; /* Align icons in a row */
    align-items: center; /* Center icons vertically */
}

.social-icons img { 
    width: 30px; /* Adjust as needed */
    margin-right: 10px; /* Space between icons */
}

.social-icons img:last-child {
    margin-right: 0; /* Remove margin for the last icon */
}

h2 {
    margin: 0 0 10px 0;
}
