:root {
    --accent: #ea4a72;
    --accent-light: #b68b96;
    --accent-dark: #3a0e2f;
    --background-color: #ffffff;
    --text-color: #000000;
}

* {
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-color);
}

html, body, h4, h6, div {
    padding: 0;
    border: 0;
    margin: 0;
}

body {
    background-color: var(--background-color);
}

a {
    color: var(--accent-light) !important;
}

i {
    font-family: 'Noto Color Emoji';
    font-style: normal;
}

#progress-container {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    width: 60px;
    height: 60px;
    text-align: center;
    opacity: 0;
}

#progress-indicator {
    width: 100%;
    height: 100%;
}

#progress-text {
    position: relative;
    top: -50px;
    margin: 0 auto;
    padding: 10px;
    font-size: 10pt;
    font-weight: bold;
    color: var(--accent-dark);
}

#content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    user-select: none;
}

#content-container > div:nth-child(1) {
    margin: 25vh 5vw auto 5vw;
    min-width: 300px;
}

#message {
    line-height: 2em;
    min-height: 4em;
    margin: 2em 0;
}

input {
    text-align: center;
    border: 0;
    border-bottom: 1px solid var(--accent-light) !important;
    width: 200px !important;
    text-transform: uppercase;
    font-weight: bold;
}

input:required:invalid {
    outline: none;
    box-shadow: none;
}

input:focus {
    height: 1px;
    border-bottom: 1px solid var(--accent) !important;
    box-shadow: var(--accent) 0 0 0 0 !important;
}

.button {
    display: block;
    border: none;
    border-radius: 23px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    margin: 40px auto auto;
    white-space: nowrap;
    position: relative;
    box-sizing: border-box;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--accent);
    color: #ffffff !important;
    box-shadow: 0 8px 32px 0 rgba(25, 28, 30, 0.1);
    width: 240px;
    font-size: 14px;
    line-height: 46px;
    height: 46px;
    padding: 0 40px;
    font-weight: bold;
    letter-spacing: 1px;
    /*transition-duration: 0.4s;*/
    /*-webkit-transition-duration: 0.4s; !* Safari *!*/
}

.button:hover, .button:focus {
    opacity: 0.8;
    background-color: var(--accent) !important;
}

.button:not( :hover ) {
    opacity: 1;
}

.button::-moz-focus-inner {
    border: 0;
    background-color: var(--accent) !important;
}

.button:after {
    box-shadow: 0 0 10px 20px var(--accent-light);
    position: absolute;
    border-radius: 2em;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
}

.button:active:after {
    box-shadow: 0 0 0 0 var(--accent-light);
    position: absolute;
    border-radius: 2em;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s;
}

*:focus {
    outline: none;
}

::selection {
    background: var(--accent);
    color: #ffffff;
}

::-moz-selection {
    background: var(--accent);
    color: #ffffff;
}

::placeholder {
    text-transform: none;
    font-weight: normal;
}