
input,textarea,button{
    width:100%;
    border:none;
    resize: none;
    border-radius: .5cqb;
    padding:10px;
    box-sizing: border-box;
    background-color: #d8d8d8;
    /* color:#fff; */
}
input{
    /* height:8cqh; */
    margin-bottom: 2cqh;
}
textarea {
    /* height:20cqh; */
    margin-bottom: 2cqh;
}

button[type="submit"] {
    font-size: 2.5cqw;
    font-family: "Montserrat", sans-serif;
    /* height:10cqh; */
    cursor: pointer;
    padding:2px;
    background-color: #969696;
    border:1px dotted #596c6f;
    box-shadow: 0 3px #2d3839;
    height:10vh;
}

.no-hover {
    background-color: #839784 !important;
    border:1px dotted #678068 !important;
    box-shadow: 0 3px #678068;
}
button[type="submit"]:not(.no-hover):hover {
    background-color:#2b393c;
}

.messageRecieved {
    color:#000000;
}


/* autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}
input:-webkit-autofill{
    -webkit-text-fill-color: #000000 !important;
}

::placeholder {
    color: rgb(117, 117, 117);
    opacity: .5; /* Firefox */
  }


/* Save contact info effects */
.fade-in {
    transition: opacity 150ms ease-in-out;
    opacity: 1;
}
.fade-out {
    transition: opacity 150ms ease-in-out;
    opacity: 0;
}

.hide {
    opacity: 0;
    display: none;
}