/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(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 '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(40,22): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(62,46): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(62,71): run-time error CSS1039: Token not allowed after unary operator: '-primary-light'
(83,22): run-time error CSS1039: Token not allowed after unary operator: '-card-shadow'
(105,26): run-time error CSS1039: Token not allowed after unary operator: '-purple-accent'
(111,22): run-time error CSS1039: Token not allowed after unary operator: '-purple-light'
(143,22): run-time error CSS1039: Token not allowed after unary operator: '-card-shadow'
(164,22): run-time error CSS1039: Token not allowed after unary operator: '-purple-accent'
(170,22): run-time error CSS1039: Token not allowed after unary operator: '-purple-light'
(200,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(206,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(216,46): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(216,71): run-time error CSS1039: Token not allowed after unary operator: '-primary-light'
(222,22): run-time error CSS1039: Token not allowed after unary operator: '-transition'
(241,33): run-time error CSS1039: Token not allowed after unary operator: '-success'
(255,21): run-time error CSS1039: Token not allowed after unary operator: '-success'
(273,48): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(273,71): run-time error CSS1039: Token not allowed after unary operator: '-primary-light'
(320,28): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(335,52): run-time error CSS1039: Token not allowed after unary operator: '-primary-light'
(335,74): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(355,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(356,22): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(369,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-dark'
(379,22): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(395,21): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(396,26): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(404,21): run-time error CSS1039: Token not allowed after unary operator: '-primary-dark'
(446,28): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
(539,21): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(543,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(550,17): run-time error CSS1039: Token not allowed after unary operator: '-text-light-resetpassword'
(558,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark-resetpassword'
(562,33): run-time error CSS1039: Token not allowed after unary operator: '-primary-purple'
(568,46): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(568,71): run-time error CSS1039: Token not allowed after unary operator: '-primary-light'
 */
:root {
    --primary-purple: #6e48aa;
    --primary-light: #9b59b6; /*for button*/
    --purple-dark: #5e35b1;
    --purple-accent: #d1c4e9;
    --purple-gradient: linear-gradient(135deg, #7e57c2 0%, #5e35b1 100%);
    --secondary: #d8b4fe;
    --accent: #e9d5ff;
    --background: #faf5ff;
    --text: #1e1b4b;
    --card-bg: rgba(255, 255, 255, 0.95);
    --success: #10b981;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-dark-resetpassword: #333;
    --text-light-resetpassword: #6c757d;
    --success: #66bb6a;
    --background-light: #f5f3ff;
    --card-shadow: 0 10px 30px rgba(94, 53, 177, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.back-to-top{
    cursor:pointer;
}
/* Custom 404 Styles */
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: transparent;
    background: var(--primary-purple);
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.error-image {
    width: 200px;
    margin: 2rem 0;
    opacity: 0.9;
}

.error-message {
    font-size: 1.5rem;
    color: #333;
    max-width: 600px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.error-action .btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%,var(--primary-light) 100%);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

    .error-action .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
    }
/*for confirm email*/
.container_confirmemail {
    margin: 5rem auto 7rem auto;
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

/* Header Styles */
.header_confirmEmail {
    /*background: linear-gradient(to right, var(--primary-color), var(--primary-light));*/
    padding: 17px 10px;
    text-align: center;
    position: relative;
}

    .header_confirmEmail::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--purple-accent);
    }

.logo_confirmemail {
    width: 80px;
    height: 80px;
    background: var(--purple-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid white;
}

    .logo_confirmEmail i {
        font-size: 36px;
        color: white;
    }

.header_confirmEmail h1 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Content Styles */
.content_confirmemail {
    padding: 30px;
    text-align: center;
}

/*START-for confirm email*/
.container_completeReactivation {
    margin: 5rem auto 7rem auto;
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

.header_completeReactivation {
    /*background: linear-gradient(to right, var(--primary-color), var(--primary-light));*/
    padding: 17px 10px;
    text-align: center;
    position: relative;
}

.header_completeReactivation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--purple-accent);
}

.logo_completeReactivation {
    width: 80px;
    height: 80px;
    background: var(--purple-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid white;
}

.logo_completeReactivation i {
    font-size: 36px;
    color: white;
}

.header_completeReactivation h1 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.content_completeReactivation {
    padding: 30px;
    text-align: center;
}
/*END-for confirm email*/

.status-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.message {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.action-links {
    margin: 25px 0;
}

.action-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple) 0%,var(--primary-light) 100%);
    color: white !important;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(126, 87, 194, 0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 5px;
}

    .action-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(94, 53, 177, 0.4);
    }

    .action-link:active {
        transform: translateY(0);
    }

.notification {
    background: #e8f5e9;
    border-left: 4px solid var(--success);
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    display: none;
    text-align: left;
    animation: slideIn 0.4s ease-out;
}

    .notification.show {
        display: block;
    }

    .notification i {
        color: var(--success);
        margin-right: 10px;
    }

/* Mobile View */
.mobile-image {
    display: none;
    max-width: 280px;
    margin: 30px auto 0;
}

    .mobile-image img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
    }
/*forEmailVerifyInfo*/ 
.header {
    background: linear-gradient(to right, var(--primary-purple), var(--primary-light));
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

.header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}



.step-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(126, 34, 206, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent);
}

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(126, 34, 206, 0.2);
    }

    .step-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary-light), var(--primary));
    }

.step-number {
    background: #9b6db7;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
    background: var(--accent);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.step-card p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 15px;
}

.note {
    background: var(--accent);
    padding: 12px;
    border-radius: 10px;
    font-size: 1rem;
    margin-top: 10px;
}
.app-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

    .app-logo i {
        font-size: 2.5rem;
        color: var(--primary-purple);
        background: var(--accent);
        padding: 15px;
        border-radius: 15px;
    }

    .app-logo span {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-dark);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        padding: 30px 20px;
    }

        .header h1 {
            font-size: 2.2rem;
        }

    .content {
        padding: 25px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 1rem;
    }

    .step-card {
        padding: 20px;
    }

    .btn {
        width: 100%;
        padding: 12px;
    }
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    opacity: 0.7;
    border-radius: 50%;
    animation: fall linear forwards;
    z-index: 1;
}
/*reset password confirmation*/
.container-customResetPwd {
    max-width: 1700px;
    width: 100%;
}

.confirmation-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(126, 34, 206, 0.15);
    overflow: hidden;
    display: flex;
    max-width: 900px;
    margin: 5rem auto 9rem auto;
    min-height: 500px;
}

.illustration-section {
    flex: 1;
    background: #9879b0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.content-section {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 300px;
    z-index: 2;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

    .circle-bg:nth-child(2) {
        width: 80%;
        height: 80%;
        background: rgba(255, 255, 255, 0.15);
    }

    .circle-bg:nth-child(3) {
        width: 60%;
        height: 60%;
        background: rgba(255, 255, 255, 0.2);
    }

.check-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

    .check-icon i {
        font-size: 60px;
        color: var(--primary-purple);
    }

.title {
    color: var(--primary-purple);
    font-size: 32px;
    font-weight:600;
    margin-bottom: 15px;
}

.subtitle {
    color: var(--text-light-resetpassword);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.confirmation-text {
    font-size: 14px;
    color: var(--text-dark-resetpassword);
    margin-bottom: 30px;
    padding: 10px;
    background: rgba(126, 34, 206, 0.05);
    border-left: 4px solid var(--primary-purple);
    border-radius: 0 8px 8px 0;
}
.login-btnResetPwd {
    display: inline-block;
    padding: 10px 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(126, 34, 206, 0.25);
    width: 100%;
    /*max-width: 300px;*/
    margin-top: 10px;
}

    .login-btnResetPwd:hover {
        text-decoration: none;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(126, 34, 206, 0.35);
    }

.mobile-graphic {
    display: none;
    justify-content: center;
    margin-top: 30px;
}

    .mobile-graphic img {
        max-width: 200px;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    }
@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}
@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

    .error-message {
        font-size: 1.2rem;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .container_confirmemail {
        max-width: 95%;
    }

    .header_confirmEmail {
        padding: 25px 15px;
    }

    .content_confirmemail {
        padding: 25px 20px;
    }

    .mobile-image {
        display: block;
    }
}

@media (max-width: 480px) {
    .header_confirmEmail h1 {
        font-size: 24px;
    }

    .message {
        font-size: 16px;
    }

    .action-link {
        padding: 12px 20px;
        font-size: 15px;
        display: block;
        margin: 15px auto;
        max-width: 280px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/*for reset password confirmation*/
@media (max-width: 768px) {
    .confirmation-card {
        flex-direction: column;
    }

    .illustration-section {
        display: none;
    }

    .mobile-graphic {
        display: flex;
    }

    .content-section {
        padding: 40px 25px;
    }

    .title {
        font-size: 28px;
    }
}

/* Animation for the check icon */
@keyframes checkAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.check-icon {
    animation: checkAnimation 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Floating animation for circles */
@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
}

.circle-bg {
    animation: float 6s ease-in-out infinite;
}

    .circle-bg:nth-child(2) {
        animation-delay: -1.5s;
    }

    .circle-bg:nth-child(3) {
        animation-delay: -3s;
    }
.signupcontent {
    display: none;
}
