.mobile-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    padding: 20px 0;
}

.mobile-logo {
    max-width: 120px;
    height: auto;
}

@media (min-width: 992px) {
    .mobile-logo-wrapper {
        display: none;
    }
}

.steps-container {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .steps-container {
        display: flex;
    }
}

@media (min-width: 576px) {
    .steps-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}
@media (max-width: 576px) {
    .form-header {
        text-align: right !important;
    }
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

.step-item:not(.active) {
    opacity: 0.6;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

@media (min-width: 992px) {
    .step-item.active .step-number {
        background: #eff6ff;
        color: #3b82f6;
    }
}

.step-item:not(.active) .step-number {
    border-color: #cbd5e1;
    color: #64748b;
}

.step-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1e293b;
}

@media (min-width: 992px) {
    .step-content h4 {
        color: #3b82f6;
    }
}

.step-item:not(.active) .step-content h4 {
    color: #64748b;
}

.step-content p {
    font-size: 12px;
    margin: 0;
    color: #64748b;
}

@media (min-width: 992px) {
    .step-content p {
        color: #3b82f6;
    }
}

.step-item:not(.active) .step-content p {
    color: #94a3b8;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.form-header h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1e293b;
}

@media (min-width: 992px) {
    .form-header h3 {
        font-size: 28px;
        color: #1e293b;
    }
}

.form-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

@media (min-width: 992px) {
    .form-header p {
        color: #64748b;
    }
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

@media (min-width: 992px) {
    .form-group-custom .form-label {
        color: #1e293b;
    }
}

.form-group-custom .msg-err {
    display: block;
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    min-height: 18px;
}

/* Hide number input spinners */
.form-group-custom input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.form-group-custom input[type="number"]::-webkit-outer-spin-button,
.form-group-custom input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.arcaptcha-wrapper {
    margin: 20px 0;
}

.submit-btn-wrapper {
    margin-top: 24px;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

.form-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.form-footer a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.form-footer a:hover {
    color: #2563eb;
}

@media (min-width: 992px) {
    .form-wrapper {
        max-width: 480px !important;
    }
}

@media (min-width: 1200px) {
    .form-wrapper {
        max-width: 520px !important;
    }
}
