@import url("common.css");
@import url("responsive.css");




.btn_1 {
    border-radius: 10px;
    padding: 10px 16px;
    /* width: 100px; */
    height: 50px;
    background: #fc2626;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            border:0;
}

.btn_1:hover {
    background-color: #0198D7;
}


.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050; /* Above most other elements */
  }


  .upload-container {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.upload-area {
    border: 1px dashed #aaa;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}
.file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.step-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
    gap: 150px;
}

.step {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.5s eas
}


.step > div {
    background-color: #ebebeb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #919191;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease
}
.dark-mode .step > div {
    background-color: #212121;
}

.step >  p {
   color: #919191;
}


.step.active > div , .step.completed > div {
    background-color: #0198D7;
    color: #fff;
    transition: all 0.5s ease;
}
.step.active > p , .step.completed > p {
    color: #0198D7;
    transition: all 0.5s ease;
}



.error-message {
    color: red;
    font-size: 0.8em;
    margin-top: 5px;
}


.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15px;
    right: -100px;
    width: 20px;
    height: 2px;
    background-color: #ccc;
    transition: all 0.5s ease;
}


.form-section {
    display: none;
    max-width: 100%;
    margin: 0 auto;
}

.form-section.active { 
    display: block;
}


.step.active:not(:last-child)::after {
    background-color: #0198D7 !important;
}
.step.completed:not(:last-child)::after {
    background-color: #0198D7 !important;
}


.form-section{
    background-color: #f7f7f7;
    padding: 40px;
    border-radius: 20px;
}
.form-section h2{
 color: #fc2626;
}



.prev-btn{
background-color: #212121;
border-radius: 10px;
}
.prev-btn i{
 color: #ffffff;
}


.dark-mode .form-section {
    background-color: #292929
}
.dark-mode .form-section h2 {
    color: #fff;
}

.dark-mode .upload-area {
  color: #fff;
}
.dark-mode .file-name {
  color: #fff;
}

.progress {
    height: 10px; /* Adjust height as needed */
    margin-top: 5px;
}

.progress-bar {
    background-color: #007bff; /* Adjust color as needed */
}

.upload-area.is-invalid{
    border: 2px dashed #ff0000;
}

.complaint{
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 20px;
}

.dark-mode .complaint{
    background-color: #292929;
}


.dark-mode .form-control.is-invalid, .dark-mode .was-validated .form-control:invalid , .dark-mode .form-select.is-invalid, .dark-mode .was-validated .form-select:invalid{
    border: 1px solid red;
}



@media screen and (min-width:1200px) {
    label{
        font-size: 16px;
    }
}
@media screen and (min-width:991px) {
    label{
        font-size: 14px;
    }
}


@media screen and (max-width:600px) {
    .step-progress {
        gap: 63px;
        justify-content: center;
        text-align: center;
    }
    .step-progress p{
    font-size: 14px;
    line-height: 17px;
    }

    .step:not(:last-child)::after {

        top: 18px;
        right: -35px;
    }

    .form-section {
        background-color: #f7f7f7;
        padding: 25px 15px;
        border-radius: 20px;
    }


    section.vendor_form .fs-5{
        font-size: 14px !important;
    }
}