.hero_title {
    font-size: 36px;
    margin-top: 50px;
}

.breadcrumb_wrapper {
    display: none;
}

.header_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}

.header_box h1{
    font-size: 42px;
}

#website_request_hero {
    min-height: 250px;
    display: flex;
    align-items: center;
}

.request_form{
    display: flex;
    justify-content: center;
    padding: 32px;
    background: #F5F5DC;
    background: radial-gradient(circle,rgba(245, 245, 220, 0.55) 0%, rgba(247, 247, 178, 0.48) 53%, rgba(255, 213, 61, 0.42) 100%);
}


.form-container {
    width: 80%;
    max-width: 600px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form_title{
    text-align:center;
    margin-top: 18px;
}
.form_subtitle{
    text-align: center;
    font-size: 14px;
    color: #646464;
}


.progress-section {
    padding: 24px 32px;
    background-color: #fff;
}

.progress-bar-container {
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 9999px;
    position: relative;
    margin-bottom: 20px;
}

.progress-bar-fill {
    height: 100%;
    background-color: #ffbd00;
    border-radius: 9999px;
    transition: width 0.5s ease-in-out;
}

.stepper-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.stepper-dots::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 1;
}

.stepper-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stepper-dot.active {
    background-color: #ffbd00;
    color: white;
}

.form-content {
    padding: 32px;
}

.form-title {
    font-size: 22px;
    font-weight: bold;
    color: #374151;
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-button {
    margin:6px 0px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: #ffbd00;
    color: black;
}

.btn-primary:hover {
    background-color: #f9b901;
}

.btn-secondary {
    background-color: #6b7280;
    color: black;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.btn-success {
    background-color: #ffbd00;
    color: white;
}

.btn-success:hover {
    background-color: #f9b901;
}

.btn-outline {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-outline:hover {
    background-color: #e5e7eb;
}

.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.otp-inputs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.otp-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 18px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.file-upload input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #f9fafb;
    font-size: 16px;
    color: #374151;
}

@media (max-width: 768px) {
    .form-container {
        width: 95%;
    }

    .progress-section,
    .form-content {
        padding: 20px;
    }

    .stepper-dot {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .otp-inputs {
        gap: 8px;
    }

    .otp-input {
        padding: 10px 12px;
        font-size: 16px;
    }
}