.consultant-login-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 860px;
    width: 100%;
    background: #fafafa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    direction: ltr;
    z-index: 999999;
    padding: 80px;
}
.consultant-login-popup img {
    width: 50%;
    object-fit: cover;
}
.consultant-login-popup form {
    direction: rtl;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}
.consultant-login-popup h2 {
    margin: 0 0 16px;
    font-size: 1.5em;
}
.consultant-login-popup p {
    margin: 0 0 24px;
    font-size: 0.9em;
    color: #666;
}
.consultant-login-popup input,
.consultant-login-popup button {
    margin-bottom: 16px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}
.consultant-login-popup button {
    background-color: #e63946;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
.consultant-login-popup button:hover {
    background-color: #d62839;
}
.open-popup-button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.open-popup-button:hover {
    background-color: #0056b3;
}