#Contact-New {
    padding: 30px;
    border-radius: 5px;   
    border:2px solid #666;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

#Contact-New input[type="submit"] {
    display: block;
    transition: .5s all ease;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    width: 180px;
    padding-left: 20px;
    border: 2px solid #666;
    border-radius: 5px;
    position: relative;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

#Contact-New input[type="submit"]:hover {
    background-color: #666;
    border: 2px solid #aaa;
    border-radius: 5px;
    height: 50px;
    transition: .5s all ease-in-out;
    box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.6);
}

#Contact-New p {
   color:#666;
   font-weight: 600;
}

#Contact-New textarea {
    border: none;
    border-bottom: 2px solid #666;
    resize: none;
    height: 80px;
    color: #666;
}

#Contact-New input[type="text"] {
    border: none;
    color: #666;
    border-bottom: 2px solid #666;
}

#Contact-New input[type="email"] {
    border: none;
    color: #666;
    border-bottom: 2px solid #666;
}

.success-alert p {
    color: rgba(20, 103, 8, 0.9);
    border-radius: 5px;
    padding: 10px;
    border: 2px solid rgba(20, 103, 8, 0.9);
}

.success-danger p {
    color: Red;
    border-radius: 5px;
    padding: 10px;
    border: 2px solid Red;
}