body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.tab-content{
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
h1{
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    text-align:center;
}
p{
    color: #1f2222;
    font-size: 20px;
    line-height: 1.2;
    max-width: 650px;
    margin: 0 auto;
}
.logo{
    background: #ff4757;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: bold;
    color: white;
    padding: 10px 10px;
}
.header{
    text-align: center;
    margin-bottom: 30px; 
}
img{
    width: 40px;
    height:40px;
}
label{
    display: block;
    color: #2c3e50;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 15px !important;
}
.form-control{
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #ecf0f1;
    /* border-radius: 12px; */
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}
.form-select{
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #ecf0f1;
    /* border-radius: 12px; */
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.step { 
    transition: all 0.3s ease; 
}
.step h5 { 
    font-weight: 600; 
}
/* .step-content .col-sm-6 { 
    margin-bottom: 1rem; 
} */

/* Progress Bar Styles */
.progress-wrapper {
    margin-bottom: 40px;
    padding: 0 20px;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 4px;
    background: #ecf0f1;
    z-index: 1;
}

.progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.4s ease;
    width: 0%;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    align-self: flex-start;
}

.progress-step.hidden-step {
    display: none;
}

.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 4px solid #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #95a5a6;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.progress-step.active .progress-circle {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.progress-step.completed .progress-circle {
    border-color: #27ae60;
    background: #27ae60;
    color: white;
}

.progress-step.completed .progress-circle::before {
    /* content: "✓"; */
    font-size: 24px;
}

.progress-label {
    font-size: 17px;
    font-weight: 600;
    color: #7f8c8d;
    text-align: center;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.progress-step.active .progress-label {
    color: #667eea;
}

.progress-step.completed .progress-label {
    color: #27ae60;
}

@media (max-width: 768px) {
    .progress-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .progress-label {
        font-size: 11px;
    }
    .progress-line {
        top: 20px;
    }
}
.swal2-popup{
    border-radius: 1.3em;
}