@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400&family=Oswald:wght@200;300;400&display=swap');
/* sopra about style */
* {
    outline: 0;
    margin: 0;
    outline-color: transparent;
    box-sizing: border-box;
}
.registration {
    box-sizing: border-box;
    padding: 0 7.81vw;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 50px;
}
.registration .reg-block {
    border: 1px solid #ccc;
    padding: 35px 50px;
    border-radius: 5px;
    max-width: 880px;
    margin: 0 auto;
}
.registration .frm-block.wborder {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.registration .frm-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.registration .frm-block>div {
    width: 48%;
    flex: 0 0 48%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.registration label {
    /*font-size: 14px;*/
    width: 100px;
    flex: 0 0 100px;
    display: inline-block;
    padding-top: 5px;
    object-fit: contain;
    font-family: Poppins;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.17;
    letter-spacing: 0.26px;
    color: #000000;
    margin: 0;
}
.registration label+div {
    flex: 1;
}
.registration input, .registration select, .registration textarea {
    width: 72%!important;
    padding: 8px 15px;
    border: 1px solid #ccc;
    font-size: 12px;
    border-radius: 5px;
    height: 34px;
}
.registration .frm-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.registration .frm-split>div {
    width: 48%;
    flex: 0 0 48%;
    margin-bottom: 20px;
}
.registration .frm-split>div>div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.registration textarea {
    height: 190px;
}

.btn-next {
    padding: 10px 25px;
    background-color: #034694;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    letter-spacing: .2px;
    font-family: Poppins;
}
label.error{
    color: red;
    width: 100%;
    font-size: 10px;
    margin-left: 5px;
}
.setup-input-img{
    display: flex;
    align-items: center;
    font-size: 12px;
}

.input-img-file{
    border-radius: 5px;
    margin: 0 5px 0 10px;
    border: 1px solid #ccc;
    padding: 7px;
}

.sales-code{
    color: #034694;
    font-size: 13px;
    font-weight: bold;
}

.sales-code-label{
    position: absolute;
    right: 2rem;
    top: .6rem;
}
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
  */

@media (min-width: 1281px) {
    /* CSS */
}

/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
    */

@media (min-width: 1025px) and (max-width: 1280px) {
    /* CSS */
}

/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
    */

@media (min-width: 768px) and (max-width: 1024px) {
    /* CSS */
}

/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
    */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* CSS */
}

/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
    */

@media (min-width: 481px) and (max-width: 767px) {
    /* CSS */
    .registration {
    padding-top: 80px;
    padding-bottom: 40px;
    } 
}

/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
    */

@media (min-width: 320px) and (max-width: 480px) {
    /* CSS */

    /*form*/
    .registration {
        padding-top: 50px;
        padding-bottom: 40px;
    } 
    .registration .reg-block {
        font-size: 8px;
        padding: 35px 20px;
    }
    .registration .frm-block.wborder {
        margin-bottom: 20px;
    }
    .registration .frm-block {
        display: block;
    }
    .registration .frm-block>div {
        display: block;
        width: 100%;
        flex: 0 0 100%;
    }
    .registration label {
        width: 100%;
        padding: 0;
        margin-bottom: 5px;
    }
    .registration .frm-split {
        display: block;
    }
    .registration .frm-split>div {
        width: 100%;
    }
    .registration .frm-split>div>div {
        display: block;
    }
    .registration label {
        width: 100%;
        padding: 0;
        margin-bottom: 5px;
    }
    .btn {
    font-size: 12px;
    padding: 12px 25px;
    }

}

@media (max-width: 667px) {
    /* CSS */
    .setup-input-img{
        flex-direction: column;
        align-items: flex-start;
        font-size: 11px;
    }

    .registration input, .registration select, .registration textarea {
        width: 100%!important;
        margin-bottom: 1rem;
    }
}