.button-detail {
    background-color: rgb(0, 113, 227);
    border-radius: 12px;
    border-width: 0px;
    color: rgb(245, 245, 247);
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    height: 100%;
    padding: 0px;
    width: 100%;
}

.button-detail:hover {
    background-color: rgb(0, 118, 223);
}

.button-detail:active {
    background-color: rgb(0, 110, 219);
}

.button-detail:disabled {
    opacity: 0.42;
    pointer-events: none;
}

.button-detail-r::before {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: rotation;
    animation-timing-function: linear;
    border-color: rgb(245, 245, 247);
    border-radius: 50%;
    border-style: solid;
    border-top-color: rgba(0, 0, 0, 0);
    border-width: 2px;
    content: "";
    display: inline-block;
    height: 17px;
    width: 17px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.input-detail {
    height: 56px;
    position: relative;
}

.input-detail input {
    background-color: rgb(255, 255, 255);
    border-color: rgb(134, 134, 139);
    border-radius: 12px;
    border-style: solid;
    border-width: 1px;
    color: rgb(29, 29, 31);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    height: 100%;
    padding: 18px 18px 0px 18px;
    width: 100%;
}

.input-detail input.error {
    background-color: rgb(255, 242, 244);
    border-color: rgb(227, 0, 0);
}

.input-detail span {
    color: rgb(110, 110, 115);
    display: block;
    font-size: 17px;
    font-weight: 400;
    left: 20px;
    pointer-events: none;
    position: absolute;
    top: 20px;
    transition-duration: 0.125s;
    transition-timing-function: ease-in;
    width: auto;
}

.input-detail span.error {
    color: rgb(227, 0, 0);
}

.input-detail input:focus {
    border-color: rgb(0, 113, 227);
    border-width: 2px;
    outline: none;
}

.input-detail input:focus+span,
.input-detail input:not(:placeholder-shown)+span {
    font-size: 12px;
    top: 10px;
}

.input-detail input::placeholder {
    opacity: 0;
}

.check-wrap {
    height: 20px;
    position: relative;
    width: 20px;
}

.check-box {
    opacity: 0;
    z-index: 2;
}

.check-detail {
    background-color: rgb(255, 255, 255);
    border-color: rgb(134, 134, 139);
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    color: rgb(255, 255, 255);
    z-index: 1;
}

.check-box,
.check-detail {
    cursor: pointer;
    height: 100%;
    left: 0;
    margin: 0px;
    position: absolute;
    top: 0;
    width: 100%;
}

.check-detail::after {
    content: "\e002";
    display: block;
    font-size: 18px;
    visibility: hidden;
    width: 18px;
}

.check-box:checked+.check-detail {
    background-color: rgb(0, 113, 227);
    border-color: rgb(0, 113, 227);
}

.check-box:checked+.check-detail::after {
    visibility: visible;
}

.check-box:focus-visible+.check-detail {
    outline-color: rgb(0, 113, 227);
    outline-offset: 2px;
    outline-style: solid;
    outline-width: 2px;
}

.check-text {
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    padding-left: 10px;
}

@media (prefers-color-scheme: dark) {
    .input-detail input {
        background-color: rgba(255, 255, 255, 0.04);
        border-color: rgb(110, 110, 115);
        color: rgb(245, 245, 247);
    }

    .input-detail input.error {
        background-color: rgba(227, 0, 0, 0.04);
    }

    .input-detail span {
        color: rgb(134, 134, 139);
    }

    .check-detail {
        background-color: rgba(255, 255, 255, 0.04);
        border-color: rgb(110, 110, 115);
        color: rgb(245, 245, 247);
    }
}