
input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

#loadingIndicator {
    position: absolute;
    display: none;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 4px solid #ccc;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media only screen and (min-width: 600px) {
    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    
    form{
        margin: 10%;
    }
    section{
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .form-group{
        margin-top: 5%;
    }
    .container {
        max-width: 80% !important;
        margin-top: 0%;
    }
    
    
    .container-first{
        width: 100% !important;
        max-width: 65% !important;
        background-color: white;
        box-shadow: 0px 0px 20px #00000020;
        padding: 20px;
        border-radius: 8px;
    }
    .step{
        display: none;
    }
    .step.active{
        display: block;
    }
    
    .step-2{
        max-width: 60% !important;
        margin-left: 20%;
    }
    
    button.next-btn,
    button.previous-btn,
    button.submit-btn{
        float: right;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 10px 30px;
    }
    button.previous-btn{
        float: left;
    }
    
}


@media only screen and (max-width: 767px) {


    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    
    form{
        margin: 10%;
    }
    section{
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .form-group{
        margin-top: 5%;
    }
    .container {
        max-width: 80% !important;
        margin-top: 12%;
    }
    
    
    .container-first{
        width: 100% !important;
        max-width: 65% !important;
        background-color: white;
        box-shadow: 0px 0px 20px #00000020;
        padding: 20px;
        border-radius: 8px;
    }
    .step{
        display: none;
    }
    .step.active{
        display: block;
    }

    
    .container .card .step .next-btn,
    .container .card .step .previous-btn,
    .container .card .step .submit-btn {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%; /* Make the buttons full width */
    }
   
}

@media only screen and (max-width: 600px) {


    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    
    form{
        margin: 10%;
    }
    section{
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .form-group{
        margin-top: 5%;
    }
    .container {
        max-width: 80% !important;
        margin-top: 25%;
    }
    
    
    .container-first{
        width: 100% !important;
        max-width: 65% !important;
        background-color: white;
        box-shadow: 0px 0px 20px #00000020;
        padding: 20px;
        border-radius: 8px;
    }
    .step{
        display: none;
    }
    .step.active{
        display: block;
    }

    
    .container .card .step .next-btn,
    .container .card .step .previous-btn,
    .container .card .step .submit-btn {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%; /* Make the buttons full width */
    }
   
}
  
  




