input[type=text],
input[type=email] {
    position: relative;
    color: #ebebec;
    font-size: 0.9rem;
    padding: 10px 9px 10px 9px;
    margin: 12px 10px 10px 0px;
    background-color: #52989d;
    width: 100%;
    height: 45px;
    outline: none;
    border-radius: 25px;
    top: 0;
    letter-spacing: 0.05em;
    border: 0px;
    transition: 0.5s;

}

input[type=text]:hover {
    box-shadow: 4px 4px 20px rgba(0, 0, 0, .4);
}

input[type=email]:hover {
    box-shadow: 4px 4px 20px rgba(0, 0, 0, .4);
}

textarea {
    position: relative;
    color: #ebebec;
    font-size: 0.9rem;
    padding: 10px 9px 10px 9px;
    margin: 12px 10px 10px 0px;
    background-color: #52989d;
    width: 100%;
    height: 90px;
    outline: none;
    border-radius: 25px;
    top: 0;
    letter-spacing: 0.05em;
    border: 0px;
    transition: 0.5s;
}

textarea:hover {
    box-shadow: 4px 4px 20px rgba(0, 0, 0, .4);
}

.inputLabel {
    position: absolute;
    left: 0px;
    top: 15px;
    padding: 10px 10px 10px 15px;
    font-size: 1em;
    color: #ebebec;
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: 0.3s;
}

.inputBox {
    width: 80%;
    margin-top: 15px;
    position: relative;
}

.getinText {
    padding-top: 50px;
    margin-left: 60px;
}

.getinText>p,
h2 {
    padding: 10px 0;
    color: #ebebec;
}

.getinText>p {
    font-size: 1em;
}

.getinText>h2 {
    font-size: 1.5em;
}

input[type=text]:focus~.inputLabel,
input[type=text]:valid~.inputLabel,
input[type=email]:focus~.inputLabel,
input[type=email]:valid~.inputLabel {
    left: 10px;
    font-size: 0.9rem;
    transition: .8s;
    color: rgb(224, 224, 224);
    transform: translateX(0px) translateY(-15px);
    padding: 2px 5px 3px 5px;
    margin-left: 10px;
    border-radius: 25px;
}

input[type=text]:focus~.inputLabel,
input[type=text]:valid~.inputLabel {
    background-color: #3183a8;
}

input[type=email]:focus~.inputLabel,
input[type=email]:valid~.inputLabel {
    background-color: #316b9b;

}

textarea:focus~.inputLabel,
textarea:valid~.inputLabel {
    left: 10px;
    font-size: 0.9rem;
    transition: .8s;
    color: rgb(224, 224, 224);
    transform: translateX(0px) translateY(-15px);
    padding: 2px 5px 3px 5px;
    margin-left: 10px;
    border-radius: 25px;
    background-color: #31518d;
}

input[type=submit] {
    height: 50px;
    width: 120px;
    background-color: #52989d;
    outline: none;
    border: 0;
    font-size: 1em;
    color: #ebebec;
    border-radius: 25px;
    transition: 0.5s;
}

input[type=submit]:hover {
    opacity: 0.7;
    font-size: 1.2em;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 6);
}

/* @media (max-width:767px) {
    .getinText {
        padding-top: 80px;
        margin-left: 35px;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .getinText {
        padding-top: 80px;
        margin-left: 35px;
    }

}

@media (min-width:992px) and (max-width:1199px) {



}

@media (min-width:1200px) {
    .getinText {
        padding-top: 50px;
        margin-left: 60px;
    }
} */