.mb-100 {
    margin-bottom: 100px !important;
}
.animated-img {
    height:100%;
    width: 100%;
}
.animated-img img {
    border-radius: 20px;
    border: 2px solid white;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    object-fit: contain;
    height:100%;
    width: 100%;
}
.video-fluid {
    border-radius: 20px;
    border: 2px solid white;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    object-fit: contain;
    height:100%;
    width: 100%;
}
.mouseHover {
    cursor: pointer;
}


.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    padding: 10px 18px;
    border: 1px solid #D0D5DD;
    color: var(--lebel-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    background-color: transparent;
}

.social-button img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.data .logo img {width: 100% !important;}

.upload-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    min-height: 260px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f3f3f3;
}
.upload-btn {
    background: #2f70ff;
    color: #fff;
    border: none;
    padding: 16px 38px;
    font-size: 18px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.upload-btn:hover { background: #1e5af0; }
.upload-text { margin-top: 25px; font-size: 18px; color: #6a6a6a; }
.upload-subtext { margin-top: 4px; font-size: 15px; color: #7a7a7a; }
.upload-link { color: #2f70ff; text-decoration: underline; }

.loader-wrapper {
    margin-top: 20px;
    text-align: center;
}

.spinner {
    width: 34px;
    height: 34px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #2f70ff;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.upload-box.drag-active {
    border: 2px dashed #2f70ff !important;
    background: #f5f9ff;
}

