﻿body {
    height: 100%;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
     
}

.bg-shape {
    position: fixed;
    border-radius: 50%;
    opacity: 0.2;

}

.shape1 {
    width: 300px;
    height: 300px;
    background: #007bff;
    top: -80px;
    left: -80px;
}

.shape2 {
    width: 250px;
    height: 250px;
    background: #6c63ff;
    bottom: -60px;
    right: -60px;
}
.shape3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,0,150,0.6), transparent);
    top: 40%;
    left: 60%;
    animation-delay: 6s;
}
.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.bg-blob {
    position: fixed; 
    z-index: revert-layer;
}
.card-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 520px;
    width: 100%;
    position:relative;
}

.logo {
    max-width: 140px;
}

h2 {
    font-weight: 600;
    font-size: 28px;
}

p {
    font-size: 15px;
    color: #6c757d;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 30px 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        height: 3px;
        background: #dee2e6;
        z-index: 0;
    }

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 33%;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: auto;
    background: #dee2e6;
    line-height: 30px;
    font-size: 14px;
    color: #fff;
}

.step.active .step-circle {
    background: #007bff;
}

.step.completed .step-circle {
    background: #28a745;
}

.step-label {
    margin-top: 8px;
    font-size: 13px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #4a90ff);
    border: none;
    color: #fff !important;
}
