/*contact form css*/
.validate-input {
    position: relative;
}
.wrap-input2 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
}

input.input2 {
    height: 45px;
}
.input2 {
    display: block;
    width: 100%;
    font-family: Poppins-Regular;
    font-size: 18px;
    color: #1e1e41;
    line-height: 1.2;
}
input {
    outline: none;
    border: none;
}
input.input2+.focus-input2::after {
    top: 16px;
    left: 0;
}
.has-val.input2+.focus-input2::after {
    top: -13px;
}
.has-val.input2+.focus-input2::before {
    width: 100%;
}

.focus-input2 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}
.input2:focus+.focus-input2::after {
    top: -13px;
}
input.input2+.focus-input2::after {
    top: 16px;
    left: 0;
}
.input2:focus+.focus-input2::before {
    width: 100%;
}
.focus-input2::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    background: #db1563;
    background: -webkit-linear-gradient(45deg,#d5007d,#e53935);
    background: -o-linear-gradient(45deg,#d5007d,#e53935);
    background: -moz-linear-gradient(45deg,#d5007d,#e53935);
    background: linear-gradient(45deg,#d5007d,#e53935);
}
.focus-input2::after {
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #999;
    line-height: 1.2;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
}

input.input2+.focus-input2::after {
    top: 16px;
    left: 0;
}
textarea.input2 {
    min-height: 115px;
    padding-top: 13px;
    padding-bottom: 13px;
}
textarea {
    outline: none;
    border: none;
}

/*contact form css end*/

    .card {
        border: 2px dotted gray;
        padding: 2rem 1rem;
    }
   