#contact {
    display: none;
    flex-direction: column;
}

form {
    display: flex;
    flex-direction: column;
    width: 80%;
}

form input,
form input::placeholder,
form input:-webkit-autofill,
form textarea,
form textarea::placeholder {
    text-align: left;
    margin: 5px 0;
    padding: 5px 0;
    font-style: italic;
    color: var(--lighterGreen);
    border: none;
    border-bottom: 2px solid var(--lighterGreen);
    background: transparent;
    font-weight: 700;
    transition: .3s;
}

form textarea::placeholder {
    border-bottom: 2px solid transparent;
}

/* Remove default focus and active styles */
form input:focus,
form textarea:focus {
    outline: none;
    border: none;
    color: white;
}

/* Delete default background on autofill */
form input:-webkit-autofill,
form input:-webkit-autofill:focus {
    -webkit-box-shadow:0 0 0 50px var(--lighterGreen) inset; /* Change the color to your own background color */
    -webkit-text-fill-color: var(--dark);
    border: none;
    padding: 5px;
}

/* Change style if placeholder is not shown */
form input:not(:placeholder-shown),
form textarea:not(:placeholder-shown) {
    background-color: var(--lighterGreen);
    -webkit-box-shadow: 0 0 0 50px var(--lighterGreen) inset; /* Change the color to your own background color */
    -webkit-text-fill-color: var(--dark);
    border: none;
    padding: 5px;
}

/* Submit button styles */
form input[type=submit] {
    -webkit-box-shadow: none;
    -webkit-text-fill-color: white;
    background-color: transparent;
    color: white;
    border: none;
    text-align: center;
    transition: .3s;
}

/* Response text stylse */
#Contact-Message {
    font-size: 70%;
    color: var(--green);
    text-align: center;
}