#contact-form {
    margin: 0 auto;
    width: 80%;
    display: grid;
    row-gap: 1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 8ch 1fr;
    column-gap: 1rem;
    align-items: center;
}

label {

	color: #81afb5;
    justify-self: end;
}

input,
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 3px solid transparent;
    border-radius: 0.5rem;
    font-family: "SometypeMono-Variable", sans-serif;
	font-size: 1rem;
	background: #070c1d;
	color: #e3f5f1;
} textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #39755c;
  outline: none;
}

button[type="submit"] {
    padding: 0.5rem 0.8rem;
    border: 3px solid transparent;
    border-radius: 0.5rem;
    font-family: "SometypeMono-Variable", sans-serif;
	font-size: 1.2rem;
    font-weight: 600;
	background: #39755c;
	color: #e3f5f1;
    cursor: pointer;
    justify-self: start;
} button[type="submit"]:hover {
    border-color: #b7d974;
}

#form-message {
    text-align: center;
    font-weight: 600;
    color: #bc5960;
}