/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tw Cen MT', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header Styling */
header {
    background: #0b3e22;
    color: white;
    padding: 20px 0;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
}

header nav ul li a:hover {
    background: #71c48e;
    color: #0b3e22;
}

/* Main Content Styling */
main {
    padding: 40px 0;
}

.signup, .login {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin: auto;
}

.signup h1, .login h1 {
    margin-bottom: 20px;
    color: #0b3e22;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    display: inline-block;
    background: #0b3e22;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: #71c48e;
}

.btn:hover {
    background: #96d2b9;
    color: #0b3e22;
}

/* Footer Styling */
footer {
    background: #0b3e22;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

footer nav ul li {
    margin: 0 10px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
}

footer nav ul li a:hover {
    color: #71c48e;
}