/* Minification failed. Returning unminified contents.
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(25,28): run-time error CSS1039: Token not allowed after unary operator: '-white'
(28,17): run-time error CSS1039: Token not allowed after unary operator: '-black'
(33,28): run-time error CSS1039: Token not allowed after unary operator: '-white'
(57,17): run-time error CSS1039: Token not allowed after unary operator: '-dark-purple'
(67,21): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(77,32): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(92,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(101,17): run-time error CSS1039: Token not allowed after unary operator: '-gray'
(115,22): run-time error CSS1039: Token not allowed after unary operator: '-white'
(128,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(142,17): run-time error CSS1039: Token not allowed after unary operator: '-dark-purple'
(148,17): run-time error CSS1039: Token not allowed after unary operator: '-gray'
(163,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(174,17): run-time error CSS1039: Token not allowed after unary operator: '-dark-purple'
(181,28): run-time error CSS1039: Token not allowed after unary operator: '-white'
(182,17): run-time error CSS1039: Token not allowed after unary operator: '-gray'
(198,17): run-time error CSS1039: Token not allowed after unary operator: '-dark-purple'
(205,21): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(217,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(261,26): run-time error CSS1039: Token not allowed after unary operator: '-gradient-purple'
(278,21): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(284,17): run-time error CSS1039: Token not allowed after unary operator: '-dark-purple'
 */
/*This css used for select country page and deactivate page*/

:root {
    --primary-color: #6e48aa;
    --primary-purple: #6A0DAD;
    --light-purple: #f3e9ff;
    --dark-purple: #4b0082;
    --white: #ffffff;
    --black: #333333;
    --gray: #6c757d;
    --gradient-purple: linear-gradient(135deg, #7B2CBF 0%, #3C096C 100%);
}
.deactivateBody {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    color: #212529;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    color: var(--black);
    line-height: 1.6;
}

.header-container {
    background-color: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(106, 13, 173, 0.1);
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    /*margin: 0 auto;*/
}

.logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--dark-purple);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 0.5rem 0;
    position: relative;
}

    .nav-link:hover {
        color: var(--primary-purple);
    }

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-purple);
        transition: width 0.3s ease;
    }

    .nav-link:hover:after {
        width: 100%;
    }

.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.page-title {
    color: var(--primary-purple);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.page-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.country-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(106, 13, 173, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(106, 13, 173, 0.15);
}

    .country-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(106, 13, 173, 0.15);
        border-color: var(--primary-purple);
    }

.country-flag {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.country-name {
    font-weight: 600;
    color: var(--dark-purple);
    margin: 0.5rem 0;
    font-size: 1.4rem;
}

.country-description {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

.remember-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0;
}

.remember-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-purple);
    margin: 1px 8px 0 0; /* Added right margin for spacing */
    vertical-align: middle; /* Ensures vertical alignment */
    position: relative; /* Helps with alignment */
    top: -1px; /* Fine-tunes vertical position */
}

.remember-label {
    font-weight: 500;
    margin-left: 8px;
    margin-bottom: -2px;
    color: var(--dark-purple);
    font-size: 1.4rem;
    vertical-align: middle; /* Ensures vertical alignment */
    cursor: pointer; /* Changes cursor to pointer when hovering label */
}

.footer {
    background-color: var(--white)!important;
    color: var(--gray);
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(106, 13, 173, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--dark-purple);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: var(--primary-purple);
        text-decoration: underline;
    }

.copyright {
    font-size: 1.4rem;
    opacity: 0.8;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--primary-purple);
    color: white;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    #snackbar.show {
        visibility: visible;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.deactivation-card {
    margin-bottom: 1rem;
    max-width: 700px;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.15);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .deactivation-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: var(--gradient-purple);
    }

.deactivation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.1) 0%, rgba(60, 9, 108, 0.1) 100%);
    border-radius: 50%;
}

    .deactivation-icon svg {
        width: 40px;
        height: 40px;
        color: var(--primary-purple);
    }

.deactivation-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.deactivation-message {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1.5rem;
}

.deactivation-footer {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

@media (max-width: 576px) {
    .deactivation-card {
        padding: 1.5rem;
    }

    .deactivation-title {
        font-size: 1.5rem;
    }
}
@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
    }

    .country-card {
        padding: 1.2rem;
    }
}

