body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f4f7f6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    max-width: 960px;
    width: 90%;
}

.left-section {
    background: linear-gradient(135deg, #8ac44a, #4a9e4a); /* Green gradient */
    color: #fff;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    width: 200px;
    margin-bottom: 40px;
    font-size: x-large;
    font-weight: bold;
}

.left-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.left-section p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0f2f7;
}

.left-section ul {
    list-style: none;
    padding: 0;
}

.left-section ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.left-section ul li svg {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    color: #ccedcc;
    flex-shrink: 0;
}

.left-section ul li span {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.left-section ul li p {
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 0;
    color: #c8e6c9;
}

.right-section {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-card {
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.user-icon svg {
    width: 60px;
    height: 60px;
    color: #8bc34a;
    margin-bottom: 20px;
}

.signup-card h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.signup-card .tagline {
    color: #777;
    margin-bottom: 30px;
    font-size: 0.95em;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 0.9em;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
}

.primary-button {
    background-color: #4caf50; /* Green */
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.primary-button:hover {
    background-color: #45a049;
}

.login-link {
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
}

.login-link a {
    color: #4caf50;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}
