@charset "utf-8";

.action a {
    color: blue;
    font-weight: bold;
    text-decoration: none;
}

.action a:hover {
    text-decoration: underline;
    color: blue;
}

div.element-group {
    margin: 5px 0;
}

label {
    display: block;
    font-family: 'Aleo';
    padding-bottom: 4px;
    font-size: 1.25em;
}

input,
select,
textarea {
    border-radius: 2px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 1.25em;
    font-family: 'Aleo';
    width: 500px;
    padding: 8px;
}

textarea {
    height: 250px;
}

button {
    height: 50px;
    background: green;
    color: white;
    border: 2px solid darkgreen;
    font-size: 1.25em;
    font-family: 'Aleo';
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    border: 2px solid black;
}

button:disabled {
    background: grey;
    font-style: italic;
}