.pilled-button {
    font-family: 'Inter';
    padding: 8px 140px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    border-radius: 5px;
    border: 1px solid transparent !important;
    background-color: rgb(22, 163, 74);
    color: #fff;
    height: 40px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.pilled-button.pilled-xl {
    display: flex;
    margin: auto;
    padding: 8px 140px;
}

.pilled-button.pilled-full {
    padding: 8px 5px;
    width: 100%;
}

.pilled-button:hover {
    background-color: rgb(21, 128, 61);
    color: #fff;
    text-decoration: none;
}

.pilled-button:focus {
    background-color: rgb(21, 128, 61);
}

.pilled-button:disabled {
    pointer-events: none;
}

.pilled-button:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.rpf-reset-input,.rpf-reset-select {
    font-family: 'Inter';
    border-width: 1px !important;
    border-color: rgba(0, 0, 0, 0.10) !important;
    border-radius: 5px !important;
    background-color: #fff !important;
    padding: 13px 16px !important;
    font-size: 14px !important;
    line-height: 14px !important;
    font-weight: 400 !important;
    color: #000 !important;
    margin-bottom: 0 !important;
    max-width: 100% !important;
}

.rpf-reset-select {
    background-position: calc(100% - 16px) center !important;
}

.rpf-reset-input::placeholder {
    color: #4C5C6B !important;
}

.reset-checkbox {
    font-family: 'Inter';
    color: #3B3B55;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

/*
** Reboot protocol form
*/

/* #main:has(.reboot-protocol-form) {
    background: linear-gradient(90deg, rgba(184, 244, 217, 0.35) 0.19%, rgba(239, 242, 245, 0.70) 101.21%);
} */

.reboot-protocol-form {
    width: 100%;
    /* background: linear-gradient(to right, #F3FCF8, #F4F6F8); */
    background: rgba(255, 255, 255, 0.50);
    border-radius: 15px;
}

.reboot-protocol-form form {
    padding: 30px 25px;
}

.rpf-container {
    display: flex;
    flex-direction: column;
}

.rpf-row {
    margin-bottom: 20px;
}

.rpf-row:nth-last-child(1) {
    margin-bottom: 0;
}

.rpf-caption {
    font-family: 'Inter';
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
}

@media (max-width: 767px) {
    .pilled-button.pilled-xl {
        padding: 8px 5px;
        width: 100%;
    }
}