/* Login Container */
.login-container {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
}

/* Login Form */
.login-page h2 {
    font-size: 1.8rem;
    color: #222;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
}

.btn-primary {
    border-radius: 10px;
    background: linear-gradient(90deg, #1a0262, #820b5c);
    border: none;
    font-weight: 600;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Countries Showcase */ /* Countries Grid */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.country-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 160px;
    display: block;
}
.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.country-card:hover img {
    transform: scale(1.1);
}
.country-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.country-card:hover .overlay {
    opacity: 1;
}
.country-card .overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Carousel (mobile) */
#countriesCarousel .country-card {
    border-radius: 15px;
}
#countriesCarousel img {
    border-radius: 15px;
    object-fit: cover;
}
