#btn-back-event {
    color: #0f6c93;
}

.event-title {
    color: #2d2d2e;
    font-weight: 600;
    font-size: 2rem;
}

.container-check-pendaftaran {
    background-color: #fff;
    border-radius: 24px;

    margin-bottom: 40px;

    .text-label {
        color: #4b4c4d;
        font-size: 1.1rem;
        font-weight: 300;
    }
}

.btn-small.primary {
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;

    &:hover {
        background-color: #1374b4;
        box-shadow: 0 4px 10px rgba(22, 137, 212, 0.3);
    }

    &:active {
        background-color: #0f5e93;
        transform: scale(0.97);
        box-shadow: none;
    }

    &:focus-visible {
        outline: 2px solid #1689d4;
        outline-offset: 2px;
    }
}

.btn-check-pendaftaran {
    width: fit-content;
    padding: 8px 16px;
    border-radius: 6px;
    text-transform: none;

    background-color: #1689d4;
}

.container-result-empty {
    margin: 0 8px;
    min-height: 40vh;
    background-color: #fff;
    border-radius: 24px;

    .container-empty {
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .bg-icon {
        border-radius: 50%;
        background-color: #d9d9d9;
        width: 120px;
        height: 120px;

        display: flex;
        justify-content: center;
        align-items: center;

        & .icon-search-check {
            color: #fff;
        }
    }

    .icon-search-check {
        font-size: 7rem;
        line-height: 1;
        color: #d9d9d9;
        font-weight: 500;
    }

    .text-title {
        color: #4b4c4d;
        font-size: 1.5rem;
        font-weight: 500;
        text-align: center;
    }

    .text-primary {
        color: #0f6c93;
    }

    .text-info {
        color: #4b4c4d;
        font-weight: 300;
        font-size: 1rem;
        text-align: center;
    }
}

.btn-check-pendaftaran.disabled {
    pointer-events: none;
    opacity: 0.65;
    cursor: not-allowed;
}

.btn-check-pendaftaran,
#btn-back {
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    .content-section {
        margin-top: 0;

        & > div:first-child {
            margin-bottom: 10px;
        }
    }

    .container-check-pendaftaran {
        padding: 20px 16px;

        border-radius: 12px;

        display: flex;
        flex-direction: column;
        gap: 16px;

        form,
        .row {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 12px;
            margin: 0;
        }

        input[type="text"],
        input[type="number"],
        select,
        .input-field {
            width: 100% !important;
            margin: 0 !important;
        }

        .text-label {
            width: 100%;
        }

        .flex-shrink-0 {
            width: 100%;
        }

        .btn-check-pendaftaran {
            width: 100% !important;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    .container-result-empty {
        .container-empty {
            padding: 24px 16px;
            border-radius: 12px;
        }

        .bg-icon {
            width: 90px;
            height: 90px;
        }

        .icon-search-check {
            font-size: 5rem;
        }

        .text-title {
            font-size: 1.25rem;
        }
    }
}

#container-result-wrapper {
    /* padding: 30px; */
    border: 1px solid #dfdfdf;
    border-radius: 24px;

    &:has(.card) {
        border: 0;
    }

    & > .row.nom > .col-xs-12 {
        padding: 0;
    }
}

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
