body {
    overflow: hidden;
    background: white;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    font-size: 16px;
    margin: 0;
}

.clear {
    clear: both
}

.hide {
    display: none !important;
}

.error {
    color: red !important;
}

.valid {
    color: green;
}

input.error {
    box-shadow: 0 0 45px red;
    border: 2px solid red;
    color: black;
}

input.valid {
    box-shadow: 0 0 45px green;
    border: 2px solid green;
    color: black;
}

.warning {
    color: #CC0033 !important;
}

.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
}

.green {
    color: green !important;
}

.error-page h1 {
    margin-top: 0;
}

.logo-container {
    background-color: white;
    padding-top: 20px;
    border-radius: 10px;
}

    .logo-container img {
    max-width: 150px;
    max-height: 50px;
    width: auto;
    height: auto;
    shape-rendering: auto;
}