body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, #4b6cb7, #182848);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
}

input[type=text],
input[type=password],
input[type=tel] {
    width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #4b6cb7;
    outline: none;
    box-shadow: 0 0 0 2px rgba(75, 108, 183, 0.2);
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #4b6cb7, #182848);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.error-msg {
    color: #e74c3c;
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-group img {
    cursor: pointer;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex: 1;
}

.step .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #4b6cb7;
    margin-bottom: 8px;
    border: 2px solid #4b6cb7;
    font-size: 14px;
}

.step.active .circle {
    background: #4b6cb7;
    color: white;
}

.step-label {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.step.active .step-label {
    color: #4b6cb7;
    font-weight: 600;
}
.u1{
    font-size: 12px;
    color: #666;
    text-align: center;
}
.step-indicator:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #e0e7ff;
    z-index: 1;
}

.user-info {
    background: #f0f5ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 3px solid #4b6cb7;
}

.user-info-item {
    display: flex;
    margin-bottom: 8px;
}

.user-info-label {
    width: 80px;
    font-weight: 500;
    color: #555;
}

.user-info-value {
    flex: 1;
    color: #333;
}

/*
.success-message {
    text-align: center;
    padding: 20px 0;
}

.success-icon {

}*/


.success-message {
    text-align: center;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.success-icon {
    text-align: center;
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 15px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;

}
.countdown {
    color: #4b6cb7;
    font-size: 13px;
    margin-top: 5px;
    text-align: right;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #4b6cb7;
    color: #4b6cb7;
}

.info-box {
    background: #e8f4ff;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.info-box ul {
    padding-left: 20px;
    margin: 10px 0;
}

.info-box li {
    margin-bottom: 5px;
}