/* Use a friendly font and slightly larger size */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    background-color: #fafafa;
}

/* Apply to all labels */
label {
    color: teal;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

/* Align field input box top with label */
input[type="text"],
input[type="url"],
input[type="datetime-local"],
select,
textarea {
    vertical-align: top;
    padding: 0.4rem;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0.3rem;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}

/* Make textarea more readable */
textarea {
    min-height: 6rem;
    resize: vertical;
}

/* Make submit button nice */
button[type="submit"], .btn {
    background-color: teal;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: bold;
    border-radius: 0.4rem;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #006666;
}

