@import url("common.css");

body {
    max-width: 600px;
    margin: 0 auto;
    background: rgb(1, 1, 64) url("images/bg-alex-kotliarskyi-unsplash.jpg") center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    font-size: 1rem;
}

header {
    margin: 3em auto 2em;
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: .5em;
}

form {
    display: flex;
    flex-flow: column nowrap;
    padding: 1em;
    background-color: rgba(27, 27, 50, 0.8);
    border-radius: 5px;
}

.form-question {
    margin-bottom: 1.5em;
}

.form-label {
    display: block;
    margin-bottom: .5em;
    font-size: 1.1rem;
    font-weight: bold;
}

.form-question > input, select, textarea, button {
    height: 32px;
    width: 100%;
    padding: .5em;
    box-sizing: border-box;
    border-radius: 5px;
    border: none;
}

.form-question fieldset div {
    margin: .5em 0;
}

textarea {
    height: 5em;
    padding: 0.5em;
    font-family: Arial, Helvetica, sans-serif;
}

button {
    cursor: pointer;
    min-height: 48px;
    background-color: #37af65;
    color: white;
    font-size: large;
}
