#login_button {
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 30px;
    margin-top: 10px !important;
    font-family: THNiramitASBold !important;
    color: #fff;
    background-color: #C00;
    transition: background-color .10s ease-in-out;
    user-select: none;
    cursor: pointer;
    width: 100%; 
    min-height: 60px; 
    border-radius: 8px;
}

    #login_button:hover {
        background-color: #873385 !important;
    }

    #login_button:active {
        background-color: #872b85 !important;
    }

@media(min-width:768px) {
    #thaid {
        margin-top: -20px;
    }
}

@media(max-width:768px) {
    #thaid {
        margin-top: 20px;
    }
}

.modal#statusSuccessModal .modal-content,
.modal#statusErrorsModal .modal-content {
    border-radius: 30px;
}

    .modal#statusSuccessModal .modal-content svg,
    .modal#statusErrorsModal .modal-content svg {
        width: 100px;
        display: block;
        margin: 0 auto;
    }

    .modal#statusSuccessModal .modal-content .path,
    .modal#statusErrorsModal .modal-content .path {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }

        .modal#statusSuccessModal .modal-content .path.circle,
        .modal#statusErrorsModal .modal-content .path.circle {
            -webkit-animation: dash 0.9s ease-in-out;
            animation: dash 0.9s ease-in-out;
        }

        .modal#statusSuccessModal .modal-content .path.line,
        .modal#statusErrorsModal .modal-content .path.line {
            stroke-dashoffset: 1000;
            -webkit-animation: dash 0.95s 0.35s ease-in-out forwards;
            animation: dash 0.95s 0.35s ease-in-out forwards;
        }

        .modal#statusSuccessModal .modal-content .path.check,
        .modal#statusErrorsModal .modal-content .path.check {
            stroke-dashoffset: -100;
            -webkit-animation: dash-check 0.95s 0.35s ease-in-out forwards;
            animation: dash-check 0.95s 0.35s ease-in-out forwards;
        }

@@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

.box00 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.wrapper {
    display: flex;
    justify-content: center; /* ??? */
    align-items: center; /* ???? */
}

.circle {
    width: 100px;
    height: 100px;
    border: 6px solid #db3646;
    border-radius: 50%;
    position: relative;
}

.cross::before,
.cross::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 6px;
    background: #db3646;
    top: 50%;
    left: 50%;
}

.cross::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.cross::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
