body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    margin: 0;
    height: 100%;
    color: #2c364c;
}

input {
    background-color: #767680;
}

.errorStyle1 {
    display: block;
    margin: 0 0 10px 0;
    color: var(--systemRed);
    font-style: italic;
    text-align: center;
    animation: errorStyle1 0.5s;
}

@keyframes errorStyle1 {
    0% {
        transform: translateX(0px);
        timing-function: ease-in;
    }

    37% {
        transform: translateX(5px);
        timing-function: ease-out;
    }

    55% {
        transform: translateX(-5px);
        timing-function: ease-in;
    }

    73% {
        transform: translateX(4px);
        timing-function: ease-out;
    }

    82% {
        transform: translateX(-4px);
        timing-function: ease-in;
    }

    91% {
        transform: translateX(2px);
        timing-function: ease-out;
    }

    96% {
        transform: translateX(-2px);
        timing-function: ease-in;
    }

    100% {
        transform: translateX(0px);
        timing-function: ease-in;
    }
}

.table-style-1 {
    border-collapse: separate;
    border: 1px solid var(--systemGray4);
    border-radius: 20px;
    border-spacing: 0;
    width: 100%;
    table-layout: auto;
}

.table-style-1 th,
.table-style-1 td {
    padding: 12px;
    border-bottom: 1px solid var(--systemGray4);
}

.table-style-1 tr:last-child td {
    border-bottom: none;
}

.button-style-3 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    border: solid 1px #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    cursor: pointer;
    font-weight: 600;
    color: #2c364c;
    font-size: 14px;
    margin: 5px;
    text-decoration: none;
}


.button-style-3:hover {
    background-color: #e5e7eb;
}