﻿#Contact {
    background-color: whitesmoke;
    padding-top: 100px;
    padding-bottom: 100px;
}

textarea, input[type='text'], input[type='password'], input[type='email'] {
    padding: 10px;
    width: 100%;
    border-color: white;
    border-style: solid;
    border-width: 2px;
    background-color: var(--first);
    margin-top: 10px;
    border-radius: 5px;
}

    textarea:focus, input[type='text']:focus, input[type='password']:focus, input[type='email']:focus {
        border-color: var(--first);
        !important;
        outline: 2px;
    }

.contact-submit {
    display: block;
    background-color: var(--second);
    text-align: center;
    text-decoration: none;
    color: var(--first)!important;
    border-radius: 5px;
    padding: 10px;
    cursor:pointer;
}
.contact-submit:hover {
    filter:brightness(.8);
}