/* mail body start*/

*,
 ::before,
 ::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.mail-row {
    display: grid;
    grid-gap: 0 15px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 25px;
}

.mail-body p {
    color: #1d9cd3;
}

.mail-row input,
.mail-textarea textarea {
    width: 100%;
    height: 40px;
    border: none;
    border-width: 0px 0px 1px 1px;
    border-color: aqua;
    border-style: solid;
    color: #333333;
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    outline: none;
}

.mail-textarea textarea {
    min-height: 130px;
}

.send-buttons {
    background: #0e5e8c;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding: 13px 15px;
    border-radius: 4px;
    display: block;
    border: none;
    cursor: pointer;
    float: right;
    margin-top: 20px;
    min-width: 210px;
}

.error {
    color: red;
}

input:active {
    border: none;
    outline: none;
}


/* mail body end */

@media only screen and (max-width:600px) {
    .mail-row {
        display: block;
    }
    .mail-line {
        margin-bottom: 10px;
    }
}