:root {
            --bg-color: #2e4d58;
            --card-bg: #ffffff;
            --accent-color: #f7d56e;
            --text-color: #333;
            --light-text: #666;
            --border-color: #e0e0e0;
            --progress-inactive: #999;
            --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }


body {
    background: var(--primery-color-80);
    color: #fff;
}
.header-area {
    padding: 8.5px;
    background: #fff;
}
/*================ BASE STYLE ================ */
.main-area {
    padding-block: 76.5px;
}

/*================ MAIN AREA STYLE ================ */
.main-top {
    max-width: 407px;
    display: flex;
    flex-direction: column;
    gap: 19.9px;
    margin-inline: auto;
    text-align: center;
    padding-bottom: 61.2px;
}

.main-top h2 {
    color: #FFF;
    font-family: var(--font-urbanist);
    font-size: 42.84px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.4284px;
    position: relative;
}

.main-top h2 img {
    position: absolute;
    max-width: 149.94px;
    right: 31.365px;
    top: 90.9%;
}

.main-top p {
    color: rgba(255, 255, 255, 0.50);
    text-align: center;
    font-size: 13.77px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    max-width: 299.88px;
    margin-inline: auto;
}

/* Main container for the entire form */
.msf-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 61.2px;
}

/* Progress bar styling */
.msf-progress-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.msf-progress-line {
    position: absolute;
    top: 50%;
    left: 1.53rem;
    right: 1.53rem;
    height: 1.8px;
    transform: translateY(-50%);
    z-index: -1;
    background: rgba(255, 255, 255, 0.60);
}

.msf-progress-line-fill {
    position: absolute;
    height: 100%;
    width: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease-in-out;
}

.msf-progress-step {
    width: 36.72px;
    height: 36.72px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 600;
    z-index: 1;
    transition: background-color 0.3s ease-in-out;
    background: #AABBBC;
    padding: 5.355px 14.535px;
    font-size: 90%;
}

.msf-progress-step.active {
    background-color: var(--accent-color);
}

.msf-progress-step.completed {
    background-color: #F3D05B;
}

/* Form card styling */
.msf-form-card {
    background-color: var(--card-bg);
    border-radius: 24.48px;
    padding: 30.6px;
    box-shadow: var(--shadow-md);
    max-width: 706.86px;
    margin-inline: auto;
    width: 100%;
}

.msf-form-header {
    margin-bottom: 18.36px;
    display: flex;
    flex-direction: column;
    gap: 18.36px;
}

.msf-form-header h2 {
    font-size: 21.42px;
    font-weight: 600;
    color: #969FB7;
    font-family: var(--font-urbanist);
}

.msf-form-header p {
    color: #181818;
    font-family: var(--font-urbanist);
    font-size: 21.42px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.2142px;
}

/* Form content styling */
.msf-form-step {
    display: none;
}

.msf-form-step.active {
    display: block;
}

.msf-form-field {
    margin-bottom: 12.24px;
    display: flex;
    flex-direction: column;
    gap: 3.06px;
    flex: 1;
    width: 100%;
}

.msf-form-field label {
    color: #181818;
    font-size: 13.77px;
    font-style: normal;
    font-weight: 500;
    line-height: 144.444%;
}

.msf-form-field .msf-input-group select,
.msf-form-field input,
.msf-form-field .msf-input-group textarea {
    width: 100%;
    padding: 14.535px 18.36px;
    font-size: 13.77px;
    border: 1px solid #174444;
    background-color: #fff;
    font-weight: 500;
    color: #2B3244;
    transition: 0.3s;
}

.msf-form-field .msf-input-group input:focus,
.msf-form-field .msf-input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(247, 213, 110, 0.2);
    border-radius: 7.65px;
}

.msf-input-group.msf-dropdown {
    position: relative;
}

.msf-input-group.msf-dropdown::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0.765rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #000;
}

.msf-input-group.msf-dropdown select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Buttons styling */
.msf-form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 0.765rem;
    margin-top: 30.6px;
}

.msf-btn {
    padding: 13.005px 15.3px;
    border: none;
    border-radius: 9.18px;
    font-size: 13.77px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: var(--shadow-light);
    width: 175.95px;
}

.msf-btn-next {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.msf-btn-next:hover {
    box-shadow: var(--shadow-md);
}

.msf-btn-prev {
    background-color: var(--neutral-colors);
    color: #fff;
}

.msf-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.msf-file-input-field {
    display: flex;
    flex-direction: column;
    gap: 3.06px;
}

.msf-file-input-field .file-input-box {
    padding: 24.48px 18.36px;
    display: flex;
    flex-direction: column;
    gap: 7.65px;
    align-items: center;
    border-radius: 6.12px;
    border: 1px dashed #174444;
    background: #F5F5F5;
    position: relative;
}

.file-input-box p {
    color: var(--neutral-colors);
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 18.36px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.file-input-box span {
    color: #969FB7;
    text-align: center;
    font-size: 10.71px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.file-input-box input {
    background: transparent;
    border: none;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

.msf-file-input-field>span {
    color: #969FB7;
    font-size: 10.71px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.life-dates-wp {
    padding-top: 18.36px;
    display: flex;
    flex-direction: column;
    gap: 18.36px;
}

.life-dates-wp h4 {
    color: #181818;
    font-family: var(--font-urbanist);
    font-size: 21.42px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.2142px;
}

.msf-input-field-group {
    display: flex;
    align-items: center;
    gap: 12.24px;
    flex-wrap: wrap;
}

.msf-input-group {
    position: relative;
}

.msf-input-group svg {
    position: absolute;
    right: 18.36px;
    top: 50%;
    transform: translateY(-50%);
}

.text-counter {
    color: #969FB7;
    font-size: 10.71px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    align-items: center;
    gap: 7.65px;
}

.character-counter-item {
    display: flex;
    align-items: center;
    gap: 2.295px;
}

.word-counter-item {
    display: flex;
    align-items: center;
    gap: 3.06px;
}

.comment-control {
    display: flex;
    align-items: center;
    gap: 7.65px;
    padding-bottom: 18.36px;
}

.comment-control input {
    width: 24.48px;
    height: 24.48px;
    aspect-ratio: 1/1;
    accent-color: #4CAF50;
}

.comment-control label {
    color: #181818;
    font-size: 13.77px;
    font-style: normal;
    font-weight: 500;
    line-height: 144.444%;
    cursor: pointer;
}

.msf-input-group input[type="file"] {
    border-radius: 3.06px;
    background: #F5F5F5;
    border-color: #F5F5F5;
}

#funeral-program {
    height: 229.5px;
}

.add-player-box {
    display: flex;
    gap: 3.06px;
}

.add-player-box button {
    padding: 14.535px 15.3px;
    width: 175.95px;
    background: #2A5557;
    border: none;
    color: #FFF;
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 13.77px;
    font-style: normal;
    font-weight: 700;
}

#funeral-program2,
#scripture {
    height: 168.3px;
}

#pallbearers-list {
    height: 229.5px;
}

#encouragement,
#add-poems {
    height: 168.3px;
}

.msf-form-field h4 {
    margin-bottom: 18.36px;
}

#thank-you-note {
    height: 229.5px;
}

.send-receiver-form {
    display: flex;
    gap: 15.3px;
}

.sent-to-form {
    flex: 1;
    width: 100%;
}

.sent-to-form h4 {
    color: #181818;
    font-family: var(--font-urbanist);
    font-size: 21.42px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.2142px;
    margin-bottom: 18.36px;
}

#donation-info {
    height: 191.25px;
}

.qr-selection-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18.36px;
}

.single-qr-code-select {
    display: flex;
    align-items: center;
    gap: 12.24px;
    padding: 15.3px;
    border-radius: 6.12px;
    border: 1px solid rgba(24, 24, 24, 0.20);
}

.single-qr-code-select input {
    width: 24.48px;
    height: 24.48px;
    aspect-ratio: 1/1;
    accent-color: #4CAF50;
}

.single-qr-code-select label {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    color: #181818;
    font-size: 13.77px;
    font-style: normal;
    font-weight: 500;
    line-height: 144.444%;
    cursor: pointer;
}

button.print-btn {
    padding: 13.005px 15.3px;
    border-radius: 9.18px;
    border: 1px solid #545A64;
    color: #2B3244;
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 13.77px;
    font-style: normal;
    font-weight: 700;
    line-height: 144.444%;
    background: #fff;
    width: 175.95px;
    transition: 0.3s;
}

button.print-btn:hover {
    background: #f7d56e;
    border-color: #f7d56e;
}

/*================ SING UP SING IN PAGE STYLE ================ */

.sign-up-main {
    padding-top: 76.5px;
    padding-bottom: 22.95px;
    padding-inline: 22.95px;
}

.sign-container {
    max-width: 470.475px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 30.6px;
}

.sign-container h4 {
    color: #FFF;
    text-align: center;
    font-family: var(--font-urbanist);
    font-size: 30.6px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.306px;
}

.sign-form-area {
    display: flex;
    width: 100%;
    padding: 30.6px;
    max-width: 468.18px;
    margin-inline: auto;
    border: 1px solid #EBEBEB;
    background: #fff;
    border-radius: 15.3px;
    color: #0B0B0B;
    font-family: var(--font-inter-tight);
    flex-direction: column;
    gap: 22.95px;
}

.sign-form-area form {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 22.95px;
    display: flex;
}

.input-group {
    display: flex;
    gap: 12.24px;
}

.single-input-field {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 9.18px;
}

.single-input-field input,
.single-input-field textarea,
.single-input-field select {
    padding: 6.12px 12.24px;
    border-radius: 6.12px;
    border: 1px solid #DEDEF5;
    background: #fff;
    font-size: 12.24px;
    line-height: 160%;
    min-height: 45.9px;
    transition: 0.3s;
    width: 100%;
}

.single-input-field input:focus,
.single-input-field textarea:focus {
    border-color: #f7d56e;
}

.single-input-field .input-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-top button {
    background: transparent;
    border: none;
}

.tooltip {
    --bs-tooltip-bg: #F3D05B;
    --bs-tooltip-color: #1a1a1a;
}

.iti__flag {
    display: none !important;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: #fff !important;
    border-radius: 7.65px !important;
}

.input-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12.24px;
    cursor: pointer;
    color: #606060;
    font-size: 18.36px;
    top: 50%;
    transform: translateY(-50%);
}

.submit-button button {
    padding: 12.24px 21.42px;
    border-radius: 6.12px;
    background: #0B0B0B;
    color: #FFF;
    font-size: 13.77px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: -0.06885px;
    width: 100%;
    border: none;
}

.new-user p {
    color: #969FB7;
    text-align: center;
    font-size: 13.77px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.new-user p a {
    color: var(--neutral-colors);
    font-weight: 600;
}

.or-continue {
    display: flex;
    align-items: center;
    gap: 7.65px;
    justify-content: space-between;
}

.or-continue span {
    display: block;
    height: 1px;
    flex: 1;
    max-width: 91.035px;
    background: #E8E8E8;
}

.or-continue p {
    color: #969FB7;
    text-align: center;
    font-size: 13.77px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.login-with {
    display: flex;
    align-items: center;
    gap: 12.24px;
}

.login-with button {
    padding: 6.12px 12.24px;
    flex: 1;
    border-radius: 6.12px;
    border: 1px solid #DEDEF5;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.12px;
    transition: 0.3s;
}

.login-with button:hover {
    background: #f7d56e;
    border-color: #f7d56e;
}

.save-login {
    display: flex;
    align-items: center;
    gap: 7.65px;
}

.save-login input {
    width: 12.24px;
    height: 12.24px;
    aspect-ratio: 1/1;
}

.forget-passowrd-wprapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.forget-passowrd-wprapper a {
    color: #0B0B0B;
    font-size: 12.24px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.forget-passowrd-wprapper a:hover {
    color: var(--accent-color);
}