body, html {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    border-top: 50px solid #65B741; /* Single green line at the top */
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
}
.container {
    display: flex;
    justify-content: flex-start; /* Aligns content to the extreme left */
    align-items: center;
    width: 100%; /* Set container to full width to use the entire screen width */
    margin-top: 20px; /* Adds space below the green line */
    padding-left: 0; /* Removes padding from the left */
}

.branding, .login-form {
    margin-left: 200px; /* Pushes the form to the left */
}

.branding {
    display: flex;
    flex-direction: column;
    align-items: center;
}





.branding img {
    width: 260px;
}

.branding h1, .branding p {
    text-align: center;
    color: #65B741; /* Dark green for text */
}

.branding h1 {
    font-size: 50px;
    margin: 10px 0;
}

.branding p {
    font-size: 16px;
    font-style: italic;
}

.login-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    width: 350px;
    border-right: 1px;
    height: 400px;
    margin-top: 50px; /* Increased from 20px to 50px */
    margin-right: 70px;
}


.login-form h2 {
    text-align: center;
    color: #858585;
}

.login-form form {
    display: flex;
    flex-direction: column;
}

input[type="text"], input[type="password"] {
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #65B741; /* Green */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}
button.create-account {
    background-color: #FFB534; /* Amber for contrast */
    margin-top: 40px;
    width: auto; /* Adjust width as necessary */
    padding: 10px; /* Example padding, adjust as necessary */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #FFB534;
}

footer {
    text-align: center;
    padding: 10px 0;
    width: 100%;
    background-color: #ddd;
    font-size: 0.9em;
    position: absolute;
    bottom: 0;
}

footer a {
    color: #4CAF50; /* Green */
    text-decoration: none;
}
