@charset "UTF-8";

body {
    margin: 0;
    font-family: 'Inter', "Helvetica" !important;
    font-size: 16px;
    color: #ffffff;
    background-color: #4E2C79;
}
img {
    border: 0 none;
}
p, li, ul, td, th, label {
    font-size: 24px;
}
th {
    background-color: #4E2C79;
    border-radius: 2px;
    padding: 3px 5px 3px 5px;
    font-size: 12px;
}
td {
    font-size: 12px;
    color: #000000;
    border: 1px solid #CACFD2;
}
input, textarea, select {
    vertical-align: middle;
    font-size: 24px;
    color: #000000;
}
input:focus::placeholder {
    color: transparent;
}
h1 {
    font-size: 16px;
    padding-bottom: 2px;
}
h2 {
    font-size: 14px;
    margin-top: 0;
    text-transform: uppercase;
}
a:focus, a:link, a:active, a:hover, a:visited {
    color: #F7BA16;
}
select:required:invalid {
    color: #dbd5d5;
}
select {
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    border-radius: 25px;
    border: 1px solid #FFFFFF;
    text-align: left;
    text-align-last: left;
    padding-left: 15px
}
option[value=""][disabled] {
    display: none;
}
option {
    color: #000000;
}
input[type="text"]::placeholder {
    color: #dbd5d5;
}
input[type="text"], input[type="password"] {
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    border-radius: 25px;
    border: 1px solid #FFFFFF;
    text-align: left;
    padding: 20px;
}
input[type="checkbox"], input[type="radio"] {
    visibility: hidden;
    width: 0;
}
input[type="checkbox"] + *::before, input[type="radio"] + *::before {
    content: "";
    display: inline-block;
    vertical-align: bottom;
    width: 30px;
    height: 30px;
    margin-right: 0.3rem;
    border-radius: 10%;
    border-style: solid;
    border-width: 0.1rem;
    border-color: gray;
    flex-shrink: 0;
}
input[type="checkbox"]:checked + *, input[type="radio"]:checked + * {
    color: #F7BA16;
}
input[type="checkbox"]:checked + *::before, input[type="radio"]:checked + *::before {
    content: "✓";
    color: white;
    text-align: center;
    background: #F7BA16;
    border-color: #F7BA16;
}
input.error, select.error, textarea.error {
    border: 2px solid #F7BA16;
}
label.error {
    color: #F7BA16;
    display: block;
    margin: 1px;
}
label input[type="image"], label input[type="checkbox"], label input[type="radio"] {
    vertical-align: text-bottom;
}
button {
    background-color: #F7BA16;
    border-radius: 15px;
    border: 1px solid #F7BA16;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4E2C79;
    font-size: 18px;
    padding: 8px 8px;
    text-decoration: none;
    text-shadow: 0 1px 0 #4E2C79;
    width: 100%;
    height: 50px;
}
button:hover {
    background-color: #F7BA16;
}
button:active {
    position: relative;
    top: 1px;
}
footer {
    font-size: 12px;
    border-top: 1px solid #FFFFFF;
    padding-top: 20px;
    text-align: center;
}
footer .copyright {
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    opacity: 0.88;
    clear: both;
    padding-top: 10px;
    display: block;
}
header {
    display: table;
    margin: 0 auto;
}
