@media (max-width: 900px) {
    .content {
        flex-direction: column;
        padding: 0;
    }
    .logo-img img {
        max-width: 300px;
    }
    .login-section {
        max-width: 100%;
    }

    .side-img{
        display: none !important;
    }
    .page-logo img{
    width: 10%; 
    height: auto;
    position: absolute;
    right: 88%;
    top: 4px;
}
.WhatsApp-logo img {
    position: absolute;
    left: 78%;
    top: 88%;
  width: 80px;
  height: auto;
}
/* Container holding country code + email */
.d-flex.align-items-center.mb-3 {
    display: flex;
    gap: 8px; /* small gap between dropdown and input */
}

/* Country code dropdown small */
.country-dropdown {
    flex: 0 0 45%; /* fixed small width, 25% of row */
}

.country-btn {
    width: 100% !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* items grouped left */
    gap: 5px; /* space between flag and code */
    padding: 0 8px !important;
    border-radius: 6px !important;
    border: 1px solid #ccc !important;
    background: #fff !important;
    color: #0e0d0d !important;
    cursor: pointer !important;
    font-size: 14px;
}

/* Email/phone input fills rest of the space */
.password-container {
    flex: 1; /* take remaining width */
}
.password-container input {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
}