.connect-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px #e2b64922;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.connect-image {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    min-height: 350px;
}

.connect-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    display: block;
}

.connect-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
    min-width: 280px;
    /* padding: 48px 36px 18px 36px; */
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    align-items: center;
    gap: 24px;
    background: #fff;
    /* justify-content: center; */
}

.span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c1a149;
    margin-bottom: 24px;
    text-align: center;
}

.btb {
    width: 90%;
    margin-bottom: 14px;
}

.btb a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 0;
    padding-left: auto;
    border-radius: 12px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    background: #f8f8f8;
    color: #222;
    box-shadow: 0 2px 8px #e2b64911;
    transition: background 0.18s, color 0.18s;
}

.btb.google-btn a {
    border: 1px solid #e2b64955;
    background: #fff;
}

.btb.facebook-btn a {
    border: 1px solid #3b5998;
    background: #3b5998;
    color: #fff;
}

.btb a .icon {
    width: 22px;
    height: 22px;
    display: inline-block;
}

.btb a:hover {
    background: #e2b64922;
    color: #df4b10;
}

.btb.facebook-btn a:hover {
    background: #2d4373;
    color: #fff;
}

.or-divider {
    margin: 18px 0 10px 0;
    color: #888;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.button-row {
    display: flex;
    width: 100%;
    gap: 18px;
    justify-content: center;
    margin-bottom: 10px;
}

.signup a,
.login a {
    display: block;
    padding: 12px 0;
    width: 120px;
    border-radius: 22px;
    font-size: 1.08rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(90deg, #e2b649 60%, #c1a149 100%);
    color: #0d2b21;
    box-shadow: 0 2px 8px #e2b64933;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.signup a:hover,
.login a:hover {
    background: linear-gradient(90deg, #c1a149 60%, #e2b649 100%);
    color: #fff;
    box-shadow: 0 4px 16px #e2b64955;
}

.disclaimer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f8f8f8;
    padding: 18px 18px;
    font-size: 0.98rem;
    color: #555;
    border-top: 1px solid #e2b64922;
    text-align: center;
}

.disclaimer p {
    margin: 0;
    line-height: 1.6;
}


/* Responsive styles */

@media (max-width: 900px) {
    .connect-container {
        flex-direction: column;
        max-width: 98vw;
        margin: 16px auto 0 auto;
        border-radius: 8px;
    }
    .connect-image,
    .connect-wrapper {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .connect-image img {
        min-height: 180px;
    }
    .connect-wrapper {
        padding: 24px 6vw 10px 6vw;
    }
    .button-row {
        flex-direction: column;
        gap: 10px;
    }
    .signup a,
    .login a {
        width: 100%;
        padding: 12px 0;
    }
    .disclaimer {
        position: static;
        margin-top: 10px;
    }
}