.container {
    display: flex;
    height: 100vh;
}

.image-container {
    flex: 3;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    height: 100%;
   
}

.form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.form-container h2 {
    margin-bottom: 20px;
}

/* form {
    width: 445px;
    max-width: 557px;
   
} */

.form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-group input {
    width: calc(100% - 30px);
    padding-right: 30px;
}

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

.label-form {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

input[type="text"],
input[type="password"] {
    width: 293px;
    height: 46px;
    padding: 8px, 15px, 8px, 15px;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding-left: 20px;
}

input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background-color:var(--green-main-color);
    ;
}


/* Style for the custom checkbox */
.custom-checkbox {

    width: 24px;
    height: 24px;
    border-radius: 5px;
    
}

/* Change background color when checkbox is checked */
.custom-checkbox:checked {
    background-color: var(--green-main-color); /* Change to your desired color */
}

/* Hide default checkbox visually but remain accessible to screen readers */
.custom-checkbox::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 1px solid #999;
    border-radius: 5px;
}

/* Hide default checkbox visually but remain accessible to screen readers when checked */
.custom-checkbox:checked::before {
    background-color:#00A0A9; /* Change to your desired color */
}

.login-button {
    width: 290px;
    height: 46px;
    border-radius: 100px;
    padding: 8px;
    background-color: var(--green-main-color);
    border: none;
    margin: 0 auto; 
    width: 100%;
    /* align-items: center; */
    text-align: center;
}
