* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;

}

.form_style .form-row {
    display: flex;
    margin: 32px 0;
}

.form_style .form-row .input-data {
    width: 100%;
    height: 40px;
   
    position: relative;
}

.input-data label{
        color: #283290;
}

.quentitylab {
    color: #283290;
}



.input-data input,
.textarea textarea {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.input-data input:focus~label,
.textarea textarea:focus~label,
.input-data input:valid~label,
.textarea textarea:valid~label {
    transform: translateY(-20px);
    font-size: 14px;
    color: darkblue;
}
.number_label{
    color: darkblue;
}

.textarea textarea {
    resize: none;
    padding-top: 10px;
}

.input-data.countrynumber {
    height: 34px !important;
}

.input-data label {
    position: absolute;
    pointer-events: none;
    bottom: 0px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 4px !important
}


.textarea label {
    width: 100%;
    bottom: 10px;
    background: #fff;
}

.input-data .underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
}

.input-data .underline:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: none;
   
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.input-data input:focus~.underline:before,
.input-data input:valid~.underline:before,
.textarea textarea:focus~.underline:before,
.textarea textarea:valid~.underline:before {
    transform: scale(1);
}

.submit-btn .input-data {
    overflow: hidden;
    height: 45px !important;
    width: 25% !important;
}

.submit-btn .input-data .inner {
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    background: -webkit-linear-gradient(right,
            #56d8e4,
            #9f01ea,
            #56d8e4,
            #9f01ea);
    transition: all 0.4s;
}

.submit-btn .input-data:hover .inner {
    left: 0;
}

.submit-btn .input-data input {
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.form-row {
    margin: 35px 0px 0px 0px;
}


.filelabel label {
    position: absolute;
    pointer-events: none;
    bottom: 26px !important;
    font-size: 16px;
    transition: all 0.3s ease;
}
#quantityM{
    border-bottom: 2px solid #ccc;
        border-top: 0;
        border-left: 0;
        border-right: 0;
}