.container7 {
    display: flex;
    max-width:2000px ;
    width: 100%;
    margin-top: 100px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.image-section {
    flex: 1;
    display: none; /* Initially hidden for responsiveness */
    background-color: #f8f9fa;
    align-items: center;
    justify-content: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

.form-section {
    flex: 1;
    padding: 40px;
    text-align: center;
}

.form-section .logo h1 {
    color: orange;
    margin-bottom: 20px;
}

form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

form input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color:#748187;
    border: #3658A1;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bolder;
}

form button:hover {
    background-color: #AFCB1F;
}

#signup {
    margin-top: 10px;
    background-color:#748187;
    border: 1px solid #fff;
    color:white;
    font-weight: bolder;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

#signup:hover {
    background-color:#AFCB1F;
    color: #fff;
}

/* Popup Styles */
.popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.popup.hidden {
    display: none;
}

.popup.visible {
    display: block;
}

/* Responsive Design */
@media (min-width: 768px) {
    .image-section {
        display: flex;
    }
}