* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Instrument Sans", "Segoe UI", Tahoma, Geneva, Verdana,
        sans-serif;
}

:root {
    --primary: #154c87;
    --primary-dark: #1e429f;
    --secondary: #4b7bec;
    --light: #ffffff;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #e2ffe4;
    --green-gradient: linear-gradient(135deg, #e2ffe4 0%, #d0f5d2 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background: var(--green-gradient);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    z-index: 100;
    height: 70px;
    border-bottom: 1px solid rgba(21, 76, 135, 0.1);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    z-index: 101;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 50%;
    margin-right: 1rem;
    box-shadow: 0 2px 8px rgba(21, 76, 135, 0.08);
    background: #fff;
    border: 2px solid rgba(21, 76, 135, 0.15);
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation styles */
.nav-links {
    display: flex;
    gap: 0rem;
}

.nav-btns {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Desktop navigation styles */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    letter-spacing: 0.01em;
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: var(--primary-dark);
    background-color: rgba(21, 76, 135, 0.08);
}

.nav-link.active {
    color: var(--primary-dark);
    font-weight: 600;
    background-color: rgba(21, 76, 135, 0.12);
}

.nav-link.active::after {
    width: 100%;
}

/* Removed duplicate hover rule */

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btns {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: none;
    outline: none;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6rem;
    /* min-height: 80vh; */
    background-color: var(--light);
    transition: all 0.5s ease;
    margin-top: 60px;
    background-color: #154c87;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background-image: url("/assets/images/logo.png"); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 400px 400px;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 100%;
    animation: fadeIn 1s ease-in-out;
    backdrop-filter: blur(5px);
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.2;
    padding-top: 6rem;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-bottom: 6rem;
    padding-top: 3rem;
    align-items: center;
    justify-content: center;
}

/* Hero image is now a background */

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 0rem 4rem;
    background: linear-gradient(to bottom, var(--light-gray) 0%, white 100%);
    padding: 2rem 6rem;
    border-top: 1px solid #e0e0e0;
    /* border-bottom: 1px solid #e0e0e0; */
    transition: all 0.5s ease;
}

.feature-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    background-color: rgba(75, 123, 236, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-text {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    transition: all 0.5s ease;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

/* Section transition effects */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Initial state for hero section */
.hero {
    opacity: 1;
    transform: translateY(0);
}

/* Small screen styles */
@media (max-width: 480px) {
    .hero {
        padding: 1rem;
        padding-top: 5rem;
    }

    .hero-title {
        font-size: 1.6rem;
        padding-top: 3rem;
        padding-left: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .mission,
    .vision,
    .database-focus {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .modal-content {
        padding: 1.25rem 0.75rem;
        border-radius: 0.5rem;
    }

    .form-input {
        padding: 0.65rem 0.75rem;
    }

    .form-submit {
        padding: 0.65rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        padding: 0.5rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    /* Responsive Hero Styles */
    .hero {
        padding: 2rem;
        background-position: center bottom;
        background-size: 80% auto;
        padding-bottom: 60%;
    }

    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        padding-top: 3rem;
        padding-left: 1rem;
    }

    /* Responsive Statistics Styles */
    .stats-container {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .stat-card {
        min-width: 100%;
        padding: 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }

    .district-distribution {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .district-label {
        width: 80px;
        font-size: 0.8rem;
    }

    .district-bar {
        height: 20px;
    }

    .district-count {
        font-size: 0.7rem;
    }

    .mobile-menu-toggle:hover {
        background-color: rgba(21, 76, 135, 0.1);
    }

    nav {
        padding: 0.75rem;
    }

    .nav-links,
    .nav-btns {
        display: none;
        position: fixed;
        left: 0;
        width: 100%;
        background-color: var(--light-gray);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 200;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        top: 60px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 0.5rem 1rem 1rem;
    }

    .nav-btns {
        flex-direction: column;
        align-items: center;
        top: calc(60px + 80px);
        gap: 0.75rem;
        padding: 1rem;
    }

    .nav-links.mobile-active,
    .nav-btns.mobile-active {
        display: flex;
        animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin: 0.25rem 0;
    }

    .hero {
        flex-direction: column;
        padding: 1.5rem;
        padding-top: 7rem;
        text-align: center;
        min-height: auto;
        gap: 1.5rem;
    }

    .hero-content {
        order: 2;
        max-width: 100%;
    }

    .hero-image {
        order: 1;
        margin-bottom: 1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding-top: 3rem;
        padding-left: 1rem;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .features {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1.5rem;
        margin: 0;
    }

    .about-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .mission-vision {
        flex-direction: column;
        gap: 1rem;
    }
}

.about-content {
    display: flex;
    align-items: flex-start;
}

.about-text {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray);
    text-align: justify;
}

.about-subtitle {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 1.5rem;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.mission-vision {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mission,
.vision {
    flex: 1;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

.mission h4,
.vision h4,
.database-focus h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.database-focus {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

@media (max-width: 992px) {
    .about-title {
        font-size: 2.2rem;
    }

    .mission-vision {
        flex-direction: column;
    }

    .about-description {
        font-size: 1rem;
    }

    .modal-content {
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0.75rem;
    }

    .hero-content {
        padding: 0;
    }

    .hero {
        padding: 1rem 0;
    }
}

/* Statistics Styles */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: space-between;
}

.stat-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    background-color: rgba(21, 76, 135, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.gender-icon {
    background-color: rgba(75, 123, 236, 0.1);
    color: var(--secondary);
}

.stat-content {
    flex: 1;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.gender-stats {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.gender-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gender-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.gender-value {
    font-weight: 600;
    color: var(--dark);
}

/* District Distribution */
.district-distribution {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Disability Distribution */
.disability-distribution {
    background-color: rgba(21, 76, 135, 0.03);
    border-left: 4px solid var(--secondary);
}

.district-distribution h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.district-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.district-bar-container {
    display: flex;
    align-items: center;
}

.district-label {
    width: 120px;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
}

.district-bar {
    height: 25px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 4px;
    position: relative;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    transition: width 1s ease-in-out;
}

.district-count {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.login-note {
    margin-top: 1.5rem;
    text-align: center;
    color: #b91c1c;
    font-size: 0.9rem;
}

.login-note i {
    color: var(--primary);
    margin-right: 0.25rem;
}

footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    min-width: 100%;
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
     */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    position: relative;
    margin: 0;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .modal-content {
        max-width: 530px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .modal-content {
        padding: 1.5rem 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0.5rem;
    }

    .modal-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .login-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .form-label {
        text-align: left;
        font-size: 0.9rem;
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gray);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.login-description {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Registration Form Responsive Styles */
.register-form .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.register-form .form-column {
    flex: 1;
    min-width: 100%;
}

.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner-sm {
    width: 20px;
    height: 20px;
}

@media (max-width: 640px) {
    .register-form .form-row,
    .login-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .register-form .form-column,
    .login-form .form-column {
        width: 100%;
    }

    .register-form .form-group,
    .login-form .form-group {
        margin-bottom: 1rem;
    }

    .register-form .form-input,
    .login-form .form-input,
    .form-input {
        font-size: 0.95rem;
        padding: 0.7rem;
        width: 100%;
    }

    .register-form .form-submit,
    .login-form .form-submit,
    .form-submit {
        padding: 0.7rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .register-form .form-footer,
    .login-form .form-footer {
        font-size: 0.85rem;
        text-align: center;
        margin-top: 1rem;
    }

    .loading-message {
        font-size: 0.85rem;
    }
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(25, 92, 160, 0.1);
    outline: none;
}

.form-submit {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-sizing: border-box;
}

.form-submit:hover {
    background-color: var(--primary-dark);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 1rem;
        padding-top: 6rem;
        background-size: 250px 250px;
    }

    .hero-image {
        max-width: 80%;
        order: -1;
        margin: 0 auto 2rem auto;
    }

    .logo img {
        width: 56px;
        height: 56px;
    }

    .features {
        flex-wrap: wrap;
        padding: 2rem 1rem;
        gap: 1.2rem;
        justify-content: center;
    }

    .feature-card {
        min-width: 280px;
        max-width: 45%;
        flex: 0 0 auto;
    }

    .about-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 0;
        text-align: center;
        min-height: auto;
        overflow-x: hidden;
    }

    .form-label {
        text-align: left;
    }

    .modal-content {
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0.75rem;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .hero-image {
        width: 100%;
        max-width: 80%;
        margin-top: 1.5rem;
        order: 2;
    }

    .hero-image img {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
        margin-bottom: 2rem;
    }

    .about-boxes {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 0;
        padding-top: 4rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding-top: 3rem;
        padding-left: 1rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-image {
        max-width: 100%;
        margin-bottom: 1.2rem;
    }

    .logo img {
        width: 42px;
        height: 42px;
        margin-right: 0.5rem;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1rem;
        gap: 1.2rem;
    }

    .feature-card {
        max-width: 100%;
        min-width: 0;
        padding: 1.5rem;
    }

    .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }

    .about-subtitle {
        font-size: 1.4rem;
        text-align: center;
    }

    .about-description {
        text-align: left;
        font-size: 0.95rem;
    }

    .mission h4,
    .vision h4,
    .database-focus h4 {
        font-size: 1.1rem;
    }

    footer {
        font-size: 0.8rem;
        padding: 1.2rem 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Alerts and Error Messages */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

.alert-danger {
    background-color: #ffeaea;
    color: #b91c1c;
    border: 1px solid #fca5a5;
}

.error {
    color: #b91c1c;
    font-size: 0.95em;
    margin-top: 0.25rem;
    display: block;
}

/* Spinner Animation */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner-sm {
    width: 20px;
    height: 20px;
}

/* Loading message below spinner */
.loading-message {
    margin-left: 0.5rem;
    margin-top: 0.3rem;
    font-size: 0.95em;
    color: #fff;
    text-align: center;
    letter-spacing: 0.5px;
}

.verification-info {
    background-color: #e2ffe4;
    color: var(--primary);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid #b6e6c9;
}
