:root {
    --primary-color: #0d9245;
    --primary-dark: #006d31;
    --primary-light: #e6f4eb;
    --primary-gradient: linear-gradient(135deg, #0d9245 0%, #006d31 100%);
    --secondary-color: #f8b500;
    --secondary-dark: #e09900;
    --secondary-light: #fff8e6;
    --accent-color: #1e3a8a;
    --accent-light: #e6ebf8;
    --gold: #d4af37;
    --gold-light: #f7f3e3;
    --light-bg: #f9fafb;
    --dark-bg: #1e293b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #f8fafc;
    --danger-light: #f8d7da;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --box-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Islamic pattern background */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d9245' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}




/* Image side */
.login-image {
    position: relative;
    height: 100%;
    min-height: 530px;
    /* border-radius: 24px 0 0 24px; */
    overflow: hidden;
    /* min-height: 530px; */
}

.login-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 10s ease;
    /* background-image: url('../asset/images/login/login_bg.jpg'); */
}

.login-container:hover .login-image-bg {
    transform: scale(1);
}

.login-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(13, 146, 69, 0.85) 0%, rgba(0, 109, 49, 0.9) 100%); */
    background:#0e1c18;
    opacity: 0.9;
}

.login-image-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Islamic arch decoration */
.arch-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    opacity: 0.2;
}

.arch {
    position: absolute;
    width: 33.33%;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.3);
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
}

.arch:nth-child(1) {
    left: 0;
}

.arch:nth-child(2) {
    left: 33.33%;
}

.arch:nth-child(3) {
    left: 66.66%;
}

.login-image-content {
    position: absolute;
    /* bottom: 1rem; */
    padding-top:3rem;
    left: 2.5rem;
    right: 2.5rem;
    color: white;
    z-index: 2;
}

.login-image-title {
    /* font-size: 2.5rem; */
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
    color:white;
}

.login-image-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.login-image-text {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}



.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
    box-shadow: 
        0 10px 15px -3px rgba(13, 146, 69, 0.3),
        0 4px 6px -2px rgba(13, 146, 69, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #006d31 0%, #0d9245 100%);
    transform: translateY(0px);
    box-shadow: 
        0 20px 25px -5px rgba(13, 146, 69, 0.4),
        0 10px 10px -5px rgba(13, 146, 69, 0.1);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-light);
    transition: var(--transition);
    z-index: -1;
}

.btn-outline-primary:hover::after {
    width: 100%;
}

.btn-outline-primary:hover {
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 15px -3px rgba(13, 146, 69, 0.1),
        0 4px 6px -2px rgba(13, 146, 69, 0.05);
    border-color: var(--primary-dark);
}

.btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

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

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


/* Create account */
.create-account {
    margin-top: 2.5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(13, 146, 69, 0.1);
    position: relative;
}

.create-account::before {
    content: 'OR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.create-account-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Tab content */
.tab-content {
    /* min-height: 450px; */
    position: relative;
}

.tab-pane {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 
        opacity 0.5s ease,
        visibility 0.5s ease,
        transform 0.5s ease;
    transform: translateY(20px);
    pointer-events: none;
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    pointer-events: all;
}

/* Form actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 2rem; */
}

/* Loading animation */
 .spinner1 {
    display: inline-block;
    width: .9rem;
    height: .9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin1 0.8s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin1 {
    to { transform: rotate(360deg); }
}

/* Decorative elements */
.decorative-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 0;
    opacity: 0.5;
}

.dots-1 {
    top: 10%;
    right: 5%;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
}

.dots-2 {
    bottom: 10%;
    left: 5%;
    background-image: radial-gradient(var(--accent-color) 2px, transparent 2px);
    background-size: 15px 15px;
}

/* Islamic geometric pattern */
.geometric-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%230d9245' fill-opacity='1'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z' opacity='.5'/%3E%3C/g%3E%3C/svg%3E");
}

.pattern-1 {
    top: 20%;
    left: 10%;
    transform: rotate(15deg);
}

.pattern-2 {
    bottom: 15%;
    right: 10%;
    transform: rotate(-15deg);
}

/* Password visibility toggle */
.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}





/* NIN */
.nin-input {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-top: 10px;
    max-width: 100%;
    padding: 0 10px;
}

.box {
    width: 40px;
    height: 40px;
    border: 2px solid #28a745;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
    .nin-input {
        gap: 2px;
        padding: 0px;
    }
    
    .box {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .login-container {
        border-radius: none;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .nin-input {
        gap: 2px;
        padding: 0px;
    }
    
    .box {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    .login-container {
        border-radius: none;
    }
}

.box:focus {
    border-color: #218838;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    outline: none;
}

.nin-container {
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

#inline-loader {
    margin: 20px auto;
}

.error-message {
    text-align: center;
}

.sign-in-link {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
}

.sign-in-link:hover {
    text-decoration: underline;
}



/* Responsive */
@media (max-width: 991.98px) {
    .section-title h1 {
        font-size: 2.8rem;
    }
    
    .login-container {
        border-radius: 0px;
    }

    .login-image {
        /* border-radius: 24px 24px 0 0; */
        /* min-height: 250px; */
    }
    
    .login-image-content {
        /* bottom: 2rem; */
        left: 2rem;
        right: 2rem;
    }
    
    .login-image-title {
        font-size: 2rem;
    }
    
    .feature-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .user-type-cards {
        flex-wrap: wrap;
    }
    
    .user-type-card {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 767.98px) {
    .login-container {
        border-radius: 0px;
    }

    .section-title h1 {
        font-size: 2.2rem;
    }
    
    .login-content {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .brand-logo {
        top: 1rem;
        left: 1rem;
    }
    
    .user-type-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .user-type-card {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Pulse animation for CTA */
/* @keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 146, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 146, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 146, 69, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
} */

/* Shimmer effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(188, 186, 186, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}



/* Register */

/* Form styles */
.registration-content {
    padding: 2.5rem;
}

.form-control.is-invalid {
    border-color: var(--danger);
    background-color: var(--danger-light);
    box-shadow: 
        0 0 0 3px rgba(220, 53, 69, 0.2),
        0 2px 4px -1px rgba(0, 0, 0, 0.02),
        0 1px 2px -1px rgba(0, 0, 0, 0.01);
}


.form-control.is-invalid ~ .form-label {
    color: var(--danger);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--danger);
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}


/* Responsive
@media (max-width: 991.98px) {
    .section-title h1 {
        font-size: 2.8rem;
    }
    
    .registration-image {
        border-radius: 24px 24px 0 0;
        min-height: 250px;
    }
    
    .registration-image-content {
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
    }
    
    .registration-image-title {
        font-size: 2rem;
    }
    
    .feature-list {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .section-title h1 {
        font-size: 2.2rem;
    }
    
    .registration-content {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .brand-logo {
        top: 1rem;
        left: 1rem;
    }
} */

/* Pulse animation for CTA */
/* @keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 146, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 146, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 146, 69, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
} */


/* Registration Steps */
.registration-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2.5rem;
}

.registration-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step-progress-bar {
    position: absolute;
    top: 25px;
    left: 0;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 2;
    transition: width 0.5s ease;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #757575;
    margin-bottom: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-circle.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 5px rgba(13, 146, 69, 0.2);
}

.step-circle.completed {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step-circle.completed::after {
    /* content: '\f00c'; */
    /* font-family: 'Line Awesome Free'; */
    /* font-weight: 900; */
}

.step-title {
    font-weight: 500;
    color: #757575;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.step-item.active .step-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Form content */
.form-content {
    /* min-height: 400px; */
    position: relative;
}

.step-pane {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 
        opacity 0.5s ease,
        visibility 0.5s ease,
        transform 0.5s ease;
    transform: translateY(20px);
    pointer-events: none;
}

.step-pane.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    pointer-events: all;
}

/* Form actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

/* Photograph upload */
.photo-upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 2rem;
    max-width: 600px;
}

.photo-card {
    width: 100%;
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(13, 146, 69, 0.1);
}

.photo-card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-5px);
}

.photo-header {
    background: var(--primary-gradient);
    color: white;
    padding: .2rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.photo-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

.photo-body {
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    /* flex-direction: column; */
    /* align-items: center; */
}

.photo-container {
    width: 210px;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
    border: 2px dashed rgba(13, 146, 69, 0.3);
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: var(--transition);
}

.photo-container:hover {
    border-color: var(--primary-color);
    background-color: rgba(13, 146, 69, 0.05);
}

.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* display: none; */
}

.photo-image.show {
    display: block;
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.photo-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
}

.photo-placeholder-text {
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

.photo-placeholder-subtext {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.photo-placeholder.hide {
    display: none;
}

.photo-requirements {
    /* margin-top: 1rem; */
    padding: 1rem;
    background-color: var(--primary-light);
    border-radius: 8px;
    width: 100%;
}

.photo-requirements-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.photo-requirements-title i {
    font-size: 1rem;
}

.photo-requirements ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.photo-requirements li {
    margin-bottom: 0.25rem;
}

.upload-progress {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
    display: none;
}

.upload-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0;
    transition: width 0.5s ease;
}

.upload-progress.show {
    display: block;
}

.photo-actions {
    display: flex;
    gap: 1rem;
    /* margin-top: 1rem; */
}

/* NIN section */
.nin-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--primary-light);
    border-radius: 12px;
    border: 1px solid rgba(13, 146, 69, 0.2);
}

.nin-section-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nin-section-title i {
    font-size: 1.2rem;
}

/* Validation error summary */
.validation-summary {
    background-color: var(--danger-light);
    border-left: 4px solid var(--danger);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
}

.validation-summary.show {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.validation-summary-title {
    color: var(--danger);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.validation-summary-title i {
    margin-right: 0.5rem;
}

.validation-summary ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.validation-summary li {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
/* Success animation */
@keyframes checkmark {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 6;
    stroke: var(--primary-color);
    stroke-miterlimit: 10;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 rgba(13, 146, 69, 0.4);
    animation: pulse 2s infinite;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 6;
    stroke-miterlimit: 10;
    stroke: var(--primary-color);
    fill: none;
    animation: checkmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmark 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}