html, body {
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
}

body {
    position: relative;
    z-index: 0;
    background-color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    color: #ffffff;
}

a, a:link, a:hover, a:visited, a:active {
    color:#ffffff;
    text-decoration: none;
    font-style: normal;
}

form {
    display: inline-block;
    width: 100%;
    max-width: 600px;
}

h1 {
    font-size: 2.0em;
}

h2 {
    font-size: 1.5em;
}

input, select, textarea {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0px;
    padding: 0.375em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1em;
    color: #000000;
}

input[type="text"], select {
    border-width: 0.2em;
    border-style: solid;
    border-color: #c2deea;
}

input[type="text"]:focus, select:focus {
    border-width: 0.2em;
    border-style: solid;
    border-color: #00a1de;
}

input[type="button"], input[type="submit"] {
    max-width: 600px;
    border-radius: 3em;
    padding: 0.375em 1em !important;    
    cursor: pointer;    
}

input[type="button"], input[type="submit"], input[type="text"] {
    -webkit-appearance: none;
}

label {
    display: block;
    margin-bottom: 0.5em;
    text-align: left;
}