body {

    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
     font-family: 'Cairo', sans-serif;
}


.login_container {
      font-family: 'Cairo', sans-serif;
    display: flex;
    width: 85%;
    max-width: 1200px;
    height: 700px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 2px solid transparent;
    /* Border for container */
    background-image: linear-gradient(white, white),
        linear-gradient(to bottom, #97c55c, #495f2c);
    background-origin: border-box;
    background-clip: content-box, border-box;

}

.login_left {
    width: 60%;
    background-color: #f1f2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* Add padding for better alignment */
    box-shadow: 1px -7px 14px rgba(0, 0, 0, 0.1);
}

.login_right {
    width: 40%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    margin-bottom: 30px;
}

.logo_image {
    width: 150px;
    height: auto;
}

.login_header {
    font-size: 24px;
    color: #666;
    margin-bottom: 30px;
     
}

.form_group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.form_group label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #7cb138;
    font-size: 18px;
}

.form_group input {
    width: 100%;
    padding: 10px 45px;
    padding-right: 35px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    background-color: #eeeeee;
    font-size: 15px;
}

.form_group input:focus {
    border-color: #7cb138;
    /* Green border color */
    background-color: #e8f4e3;
    /* Light green background color (optional) */
    outline: none;
    /* Remove default outline */
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #7cb138;
}

.form_options {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember_me {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 8px;
}

.remember_me input[type="checkbox"] {
    accent-color: #7cb138;
    /* Green color for the checkbox */
    margin-right: 10px;
}

.forgot_password {
    color: #7cb138;
    font-size: 14px;
    text-decoration: none;
}

.forgot_password:hover {
    text-decoration: underline;
}

.login_button {
    width: 100%;
    padding: 10px;
    background-color: #7cb138;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 20px;
}

.login_button:hover {
    background-color: #69a22f;
}

.signup_link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.signup_link a {
    color: #7cb138;
    text-decoration: none;
}

.signup_link a:hover {
    text-decoration: underline;
}

/* Adjust the image size inside the left panel */
.login_left img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .login_container {
        flex-direction: row;
        height: auto;
        padding: 2px;
        height: 500px;
    }

    .login_left {
        width: 100%;
    }

    .login_right {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 1600px) {
    .login_container {
        flex-direction: row;
        height: auto;
        padding: 2px;
        height: 550px;
    }

    .login_left {
        width: 100%;
    }

    .login_right {
        width: 100%;
        padding: 20px;
    }

    .login_left {
        border-radius: 30px 0 0 30px;
    }
}

@media (max-width: 768px) {
    .login_container {
        flex-direction: row;
        height: auto;
        padding: 2px;
        height: 550px;
    }

    .login_left {
        width: 100%;
    }

    .login_right {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .login_left {
        display: none;
    }

    .login_container {
        width: 90%;
        height: 600px;
    }

    .login_right {
        width: 100%;
        padding: 20px;
    }

    .login_header {
        text-align: center;
    }
}
