/* --- Base Card Styles --- */
.card0 {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background-color: #fff;
    border-radius: 1rem;
}

/* Glass-style secondary card */
.card2 {
    margin: 0 40px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px) saturate(150%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

/* --- Image Sizing --- */
.image {
    width: 300px;
    height: auto;
}

/* --- Typography --- */
.text-sm {
    font-size: 0.875rem;
}


.text-muted.small {
    color: #5c6bc0;
    font-weight: 500;
}

/* --- Buttons --- */
.btn-primary {
    background: linear-gradient(135deg, #1A237E, #3949AB);
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(57, 73, 171, 0.35);
}

/* --- Form Controls --- */
input.form-control {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    background: #fafafa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input.form-control:hover {
    border-color: #bbb;
}

input.form-control:focus {
    border-color: #3949AB;
    background: #fff;
    box-shadow: 0 0 0 0.25rem rgba(57, 73, 171, 0.15);
    outline: none;
}

/* --- Footer --- */
.footerCtm {
    background: none;
    color: #999;
    font-weight: normal;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    margin-top: 2rem;
}

.footerCtm small {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* --- Social Media Buttons --- */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 6px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Specific platform colors */
.btn-icon .fa-facebook-f {
    color: #fff;
}

.btn-icon.facebook {
    background: #1877F2;
}

.btn-icon .fa-whatsapp {
    color: #fff;
}

.btn-icon.whatsapp {
    background: #25D366;
}

.btn-icon .fa-instagram {
    color: #fff;
}

.btn-icon.instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.btn-icon .fa-tiktok {
    color: #fff;
}

.btn-icon.tiktok {
    background: #000000;
}

/* Hover effect */
.btn-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* --- Swiper / Hero Text --- */
.slide-text {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    color: #fff;
    text-align: left;
}

.slide-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.slide-text p {
    font-size: 1rem;
    opacity: 0.9;
}

/* --- Responsive Adjustments --- */
@media screen and (max-width: 991px) {
    .card2 {
        margin: 20px auto;
        width: 90%;
        padding: 2rem 1.5rem;
    }

    .bg-gradient {
        padding: 20px;
    }

    .login-swiper-container {
        height: 300px;
    }

    .swiperIndex {
        height: 60vh;
    }

    .slide-text h3 {
        font-size: 1.4rem;
    }

    .slide-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .slide-text {
        bottom: 2rem;
        left: 1rem;
        right: 1rem;
    }

    .slide-text h3 {
        font-size: 1.3rem;
    }

    .slide-text p {
        font-size: 0.85rem;
    }
}