@font-face {
    font-family: "PoppinsRegular";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype")
}

@font-face {
    font-family: "PoppinsBold";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype")
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: PoppinsRegular;
    color: #5A6A85;
}

h2 {
    color: #2A3547;
}

.page-wrapper {
    position: relative;
}

.radial-gradient::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.3;
    background: radial-gradient(#d2f1df, #d3d7fa, #bad8f4) 0% 0% / 400% 400%;
    animation: 15sease 0s infinite normal none running gradient;
}

.z-index-5 {
    z-index: 5 !important;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2A3547;
}

label:has(+input[autofocus]):after {
    content: " *";
    color: #fa896b;
    font-weight: 600;
}

.btn-danger:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 calc(2px + 2px) rgb(240 82 82 / 1), 0 0 #0000, 0 0 #0000;
}

/* Start Sweetalert2 */
.swal2-popup {
    width: 512px !important;
    padding: 20px !important;
    border-radius: 5px !important;
    font-size: 16px !important;
}

/* End Sweetalert2 */

/* Start Radio Button */
.choise-wrapper {
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    padding: 16px 16px 12px 0px;
    cursor: pointer;
}

.choise-title-wrapper {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.choise-title {
    display: block;
    position: relative;
    font-weight: 800;
    font-family: "Open Sauce One", "Nunito Sans", -apple-system, sans-serif;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;
    color: #212121;
    text-decoration: initial;
    margin: 0px 0px 2px;
}

.choise-radio-wrappper {
    cursor: pointer;
    display: inline-block;
}

.choise-radio {
    width: 0px;
    height: 0px;
    opacity: 0;
    position: absolute;
    appearance: none;
    margin: 0px;
    padding: 0px;
}

.choise-radio-title {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    border: 2px solid #2E3137;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.choise-radio:checked+.e1m1i7xu1 {
    border-color: #ef4444;
}

.choise-radio-title::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 200ms cubic-bezier(0.2, 0.64, 0.21, 1);
}

.choise-radio:checked+.e1m1i7xu1::before {
    background: #ef4444;
    transform: scale(1);
}

/* End Radio Button */