* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background: #dfe6e9;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

h1, h2 {
    margin: 1rem 0;
}

h2 {
    margin-top: 0;
}

.wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    min-height: 100%;
}

.status {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    text-align: center;
    font-size: 1.3rem;
    text-shadow: 1px 1px #eee;
}

form {
    max-width: 500px;
}

form .field {
    display: flex;
    flex-direction: column;
    margin-top: 1.25rem;
}

form .field-header {
    margin-top: 1.75rem;
}

form .field:first-child {
    margin-top: 0;
}

form select {
    border-radius: 0.375rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: 1px solid #dcdde1;
}

form label.prompt {
    font-weight: bold;
    font-size: 1rem;
}

form label.clickable-label {
    display: flex;
    align-items: center;
}

form label.clickable-label input {
    margin-right: 0.5rem;
}

form .single-input {
    margin-top: 0.25rem;
}

form .multi-input-container label {
    margin-top: 0.5rem;
}

form .field-header label.prompt {
    font-size: 1.2rem;
}

form .field-label label.prompt {
    font-weight: normal;
}

input {
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #aaa;
    font-size: 1rem;
}

.field[data-errored] .error-text {
    color: #c00;
    font-weight: bold;
    margin-bottom: 1rem;
}

.field[data-errored] .prompt {
    color: #c00;
}

button[type="submit"] {
    margin-top: 2rem;
    background-color: #31597a;
    border: none;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 1rem;
    color: #fff;
}

#code-view {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.verification-code {
    width: 100%;
    max-width: 750px;
    background: white;
    padding: 1rem;
}

.verification-code img {
    width: 100%;
}

.valid-til {
    margin-top: 1rem;
}