@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Roboto", serif;
}
:root {
    --dashboard: #5080b5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
button {
    cursor: pointer;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}

/* error display */
.form-group .invalid-feedback,
.form-group .valid-feedback {
    font-size: 0.9rem;
    font-weight: 400;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: #F64E60;
}
.formError{
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: #F64E60;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
    display: block;
}

/* homepage */

.homepage {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.homepage__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assests/home_page_bg.png");
    background-size: cover;
}

.homepage__content {
    width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
}

.homepage__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.homepage__buttons {
    width: 100%;
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.homepage__button {
    width: 100%;
    border-radius: 8px;
    padding: 15px 0;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.homepage__button--signin {
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
    border: none;
    color: white;
}

.homepage__button--register {
    position: relative;
    border-radius: 8px;
    border: none;
    background-image: linear-gradient(#0bcee3 0%, #5080b5 100%);
    background-clip: text;
    color: transparent;
}

.homepage__button--register::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px; /* 1px border thickness */
    border-radius: inherit;
    background: linear-gradient(#0bcee3 0%, #5080b5 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* dashboard */
.dashboard {
    background-color: var(--dashboard);
    height: 100svh;
    overflow: hidden;
}
.dashboard__sidebar {
    width: 320px;
    position: fixed;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    color: white;
}
.dashboard__sidebar_profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 15px 0px 15px;
}
.dashboard__sidebar_profile_photo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}
.dashboard__sidebar_profile_info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
}
.dashboard__sidebar_menu_list {
    flex: 1 1 0%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.dashboard__sidebar_menu_list_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3rem;
}
.dashboard__sidebar_menu_list_item svg {
    width: 30px;
    height: 30px;
}
.dashboard__sidebar_logout {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 3rem;
}
.nav_active {
    background-color: rgba(0, 0, 0, 0.3);
}
.dashboard__sidebar_logout svg {
    width: 25px;
    height: 25px;
}
.dashboard__pageWrapper {
    margin-left: 320px;
    height: 100svh;
    background-color: var(--dashboard);
    display: flex;
    flex-direction: column;
}
.dashboard__page {
    flex: 1 1 0%;
    background-color: white;
    border-radius: 10px;
    margin: 10px 10px 10px 0px;
    overflow-y: auto;
    padding: 30px;
}

/* dashboard home */
.dashboard_home {
    position: relative;
}
.dashboard_home_img img {
    width: 100%;
    object-fit: cover;
}
.dashboard_home_logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    background-color: white;
    padding: 15px;
}
.dashboard_home_card_list {
    position: absolute;
    bottom: -170px;
    display: flex;
    gap: 20px;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 1400px) {
    .dashboard_home_card_list {
        position: unset;
        bottom: 0px;
        left: 0;
        transform: translateX(0%);
        margin-top: 40px;
        padding: 0px 20px;
    }
}
@media (max-width: 1068px) {
    .dashboard_home_card_list {
        flex-direction: column;
        align-items: center;
    }
}
.dashboard_home_card_list_item {
    box-shadow: 0px 2px 10px 0px #00000040;
    border-radius: 20px;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    background-color: white;
}
.dashboard_home_card_list_item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px; /* 1px border thickness */
    border-radius: inherit;
    background: linear-gradient(360deg, #0bcee3 0%, rgba(80, 128, 181, 0.25) 74.5%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.dashboard_home_card_list_item h3 {
    background-image: linear-gradient(#0bcee3 0%, #5080b5 100%);
    background-clip: text;
    color: transparent;
}
.dashboard_home_card_list_item img {
    width: 50%;
    min-width: 70px;
}
.margin-top {
    margin-top: 40px;
}
@media (max-width: 1400px) {
    .margin-top {
        margin-top: 0px;
    }
}

/* subscription */
.subscription_content_heading {
    color: #000;
    padding-left: 70px;
    padding-top: 30px;
}

.subscription__plans {
    width: 80%;
    margin: auto;
    padding-top: 35px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.subscription__plan {
    position: relative;
    width: 400px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 7px;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0px 2px 10px 0px #00000040;
    cursor: pointer;
}

.subscription__plan_price {
    padding-top: 15px;
    color: #0bcee3;
}

.subscription__plan.selected {
    border: 2px solid #1af2bd;
}

.selected-sign {
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: none;
}

.subscription__plan.selected .selected-sign {
    display: block;
}
/* plan__manager */
.plan__manager__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.plan__manager__content h1 {
    color: #0bcee3;
    padding-bottom: 25px;
}

.plan__manager__input {
    margin: 40px 20px;
    padding: 15px;
    width: 400px;
}
.plan__manager__input::placeholder {
    font-size: 15px;
}

.plan__manager__content button {
    margin-top: 40px;
}

/* participant */
.participant_content h1 {
    color: #0bcee3;
    padding-left: 70px;
    padding-top: 30px;
}

.participant_content__radio {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.radio-group {
    display: flex;
    gap: 25px;
}

.radio-option {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    color: black; /* Default text color */
}

.radio-option input {
    display: none; /* Hide the default radio input */
}

.radio-circle {
    width: 16px;
    height: 16px;
    border: 2px solid #0bcee3; /* Circle border color */
    border-radius: 50%;
    margin-right: 10px; /* Space between circle and text */
    display: inline-block;
    background-color: white; /* Default background color */
    position: relative;
}

.radio-option input:checked + .radio-circle {
    background-color: #fff; /* Fill the circle when selected */
}

.radio-option input:checked + .radio-circle::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #0bcee3; /* Small inner circle */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-option span {
    color: #0000007a;
}

.radio-option input:checked + .radio-circle + span {
    color: #0bcee3; /* Change text color when selected */
}

.edit__participant--plan__manager__input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.participant_content__footer {
    margin-top: 60px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
}

@media (max-width: 768px) {
    .participant_content__footer {
        flex-direction: column;
        gap: 20px;
    }
}

.participant_content__footer--checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
}

.participant_content__footer--checkbox input {
    width: 15px;
    height: 15px;
}

.participant_content__footer a {
    width: 200px;
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 15px 0;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.blank {
    width: 200px;
}

/* add-category */
.search__category {
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: #000000b2;
    font-weight: 500;
    border: 1px solid #00000033;
    border-radius: 8px;
    background-color: #00000008;
}

.search__category input {
    display: flex;
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
}

.category__list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

.category__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    border-bottom: 2px solid #cccccc73;
    padding: 25px;
}

.category__row h2 {
    color: #0bcee3;
}
.category__row h3 {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #0bcee3;
}

/* popup */

#popup {
    display: none; /* Hidden by default */
    justify-content: center;
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

.popup-wrapper {
    position: relative;
    border: 3px solid #0bcee3;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    max-height: 700px;
    margin: auto;
    overflow: auto;
}

.close {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#openPopup {
    cursor: pointer;
}

.popup__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0px 20px 0px;
    border-bottom: 2px solid #cccccc6e;
}
.popup__content:first-child {
    padding-top: 25px;
}
.popup__content:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

/* create invoice */
.layout {
    padding: 30px 50px;
}

.layout__heading h1 {
    color: #5080b5;
    font-weight: 700;
}

.layout__content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 1250px) {
    .layout__content {
        grid-template-columns: repeat(1, 1fr);
    }
}

.generatelayout__content {
    margin-top: 40px;
    display: grid;
}

.layout__form {
    max-width: 700px;
    width: 100%;
    margin: 0px auto;
}
.generatelayout__form {
    width: 100%;
}

.form_fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.add__item {
    max-width: 700px;
    align-items: center;
    gap: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    display: flex;
    cursor: pointer;
}

.hidden_date_picker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.merge_date {
    max-width: 700px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

/* textarea */
.textarea__container {
    width: 100%;
    position: relative;
    margin-top: 0px;
}

.textarea__container textarea {
    padding: 15px 0;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    width: 100%;
    resize: none;
}

.textarea__container label {
    position: absolute;
    left: 20px;
    top: 12px;
    color: #000;
}

textarea:focus + label,
textarea:not(:placeholder-shown) + label {
    top: -8px;
    padding: 0 10px;
    color: #000;
    background-color: #fff;
}

.layout__form__footer {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.layout__form__footer h1 {
    color: #0bcee3;
    font-weight: 700;
}

.layout__form__footer button {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(360deg, #d9d9d9 0%, #808080 100%);
}

/* right part */
.layout__participant {
    display: none;
    max-width: 600px;
    border: 1px solid #000;
    border-radius: 8px;
}
.layout__participant.show {
    display: block;
}
.search__participant {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: #000000b2;
    font-weight: 500;
    border-bottom: 1px solid #00000008;
    border-radius: 8px;
    background-color: #00000008;
}

.search__participant input {
    display: flex;
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
}
.participant__list {
    display: flex;
    flex-direction: column;
}

.participant__list p {
    padding: 20px 40px;
    border-bottom: 1px solid #0000003b;
    font-weight: 500;
    font-size: 18px;
}

.participant__list p :last-child {
    border-bottom: none;
}
.participant__list p :first {
    padding-top: 40px;
}

/* date picker */
.date__picker {
    position: relative;
}

.date__picker_input {
    padding: 15px 0;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    width: 100%;
    max-width: 265px;
}

.date__picker_label {
    position: absolute;
    left: 20px;
    top: 12px;
    color: #000;
}

.date__picker:focus + .date__picker_label,
.date__picker:not(:placeholder-shown) + .date__picker_label {
    top: -8px;
    padding: 0 10px;
    color: #000;
    background-color: #fff;
}

input[type="date"] {
    display: block;
    position: relative;
    padding: 1rem 3.5rem 1rem 0.75rem;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: white
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='22' viewBox='0 0 20 22'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23688EBB' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' transform='translate(1 1)'%3E%3Crect width='18' height='18' y='2' rx='2'/%3E%3Cpath d='M13 0L13 4M5 0L5 4M0 8L18 8'/%3E%3C/g%3E%3C/svg%3E")
        right 1rem center no-repeat;
    cursor: pointer;
}
input[type="date"]:focus {
    outline: none;
}

::-webkit-datetime-edit {
}
::-webkit-datetime-edit-fields-wrapper {
}
::-webkit-datetime-edit-month-field:hover,
::-webkit-datetime-edit-day-field:hover,
::-webkit-datetime-edit-year-field:hover {
    background: rgba(0, 120, 250, 0.1);
}
::-webkit-datetime-edit-text {
    opacity: 0;
}
::-webkit-clear-button,
::-webkit-inner-spin-button {
    display: none;
}
::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
    color: #5080b5;
}

input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 0;
}
input[type="date"]:hover::-webkit-calendar-picker-indicator:hover {
    opacity: 0;
}

/* otp */
.otp__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.otp__content h1 {
    color: #0bcee3;
}

.otp__content--para {
    color: #0000009d;
    font-size: 18px;
    font-weight: 600;
    padding-top: 20px;
}
.otp__container {
    display: flex;
    align-items: center;
    gap: 75px;
}
.otp__field {
    outline: none;
    margin: 50px 0;
    width: 50px;
    height: 50px;
    padding: 10px;
    font-size: 24px;
    text-align: center;
    border: 3px solid transparent; /* Ensure visible border */
    border-image-source: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
    border-image-slice: 1; /* Defines how to slice the border image */
    border-radius: 8px; /* Optional: Add rounding */
}

.resend {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 18px;
    font-weight: 600;
}

.resend__timer {
    border: 1px solid #0bcee3;
    border-radius: 50%;
    padding: 5px;
}

.resend_text {
    color: #0000009d;
}
.resend_text span {
    color: #000;
}

/* register */
.register__banner img {
    width: 100%;
}

.register__content {
    padding: 40px 0px;
}

.register__content h1 {
    color: #0bcee3;
    padding-left: 70px;
    padding-top: 30px;
}

.register__inputs {
    padding-top: 30px;
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 5px;
}

@media (max-width: 768px) {
    .register__inputs {
        grid-template-columns: repeat(1, 1fr);
    }
}

.merge__input {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    width: 100%;
}

.merge__input--input {
    position: relative;
    margin-top: 20px;
}

.merge__input--input input {
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    width: 100%;
}

/* dropdown for state */
.merge__input--input select {
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.merge__input--input label {
    position: absolute;
    left: 20px;
    top: -9px;
    background: #fff;
    padding: 0px 10px;
    color: #000;
}

.register__upload-container {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}

.register__upload-container span {
    color: #555;
}

.register__inputs--upload_logo {
    display: none; /* Hide the actual input field */
}

.register__inputs--next_btn {
    margin-top: 15px;
    width: 200px;
    margin-left: auto;
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 15px 0;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.register__content p {
    color: #5080b5;
    font-weight: 600;
    padding-left: 70px;
    padding-top: 20px;
}
.register__bank_details {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.register__inputs--register_btn {
    margin-top: 5px;
    width: 200px;
    margin: auto;
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 15px 0;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

/* sign in */
.signin {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 1200px) {
    .signin {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* left side part  */
.signin__content_wrapper {
    width: 100%;
    margin: auto;
    padding: 20px;
    max-width: 600px;
}

.signin__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 35px;
}

.logo {
    width: 100px;
}

.input-container {
    position: relative;
    margin-top: 20px;
}
.dropdown-container {
    position: relative;
    margin-top: 20px;
}

.input-container input {
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    width: 100%;
}
.dropdown-container select {
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.input-container label {
    position: absolute;
    left: 20px;
    top: 12px;
    color: #000;
}
.dropdown-container .dropdown__label {
    position: absolute;
    left: 20px;
    top: 12px;
    color: #000;
}

input:focus + label,
input:not(:placeholder-shown) + label {
    top: -8px;
    padding: 0 10px;
    color: #000;
    background-color: #fff;
}

select:focus + .dropdown__label,
select:not(:placeholder-shown) + .dropdown__label {
    top: -8px;
    padding: 0 10px;
    color: #000;
    background-color: #fff;
}

.forgot__password {
    display: flex;
    justify-content: end;
    padding-top: 15px;
}

.signin__buttons {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.signin__button {
    width: 100%;
    border-radius: 8px;
    padding: 15px 0;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.signin__button--signin {
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
    border: none;
    color: white;
}

.signin__button--register {
    position: relative;
    border-radius: 8px;
    border: none;
    background-image: linear-gradient(#0bcee3 0%, #5080b5 100%);
    background-clip: text;
    color: transparent;
}

.signin__button--register::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px; /* 1px border thickness */
    border-radius: inherit;
    background: linear-gradient(#0bcee3 0%, #5080b5 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* rigth side part  */
.signin_banner_img {
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .signin_banner_img {
        display: none;
    }
}

/* generate invoice */

.name {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 15px 20px;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.name input {
    border: none;
    background: none;
    color: #0bcee3;
    font-size: 16px;
    outline: none;
    width: 100%;
    padding: 5px;
}

.name svg {
    cursor: pointer;
}

.items .item__label {
    font-weight: 500;
}

.items_contents {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px 30px;
}
.item_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0px;
    border-bottom: 1px solid #ccc;
}
.item_content:last-child {
    border-bottom: none;
}
.item_heading {
    display: flex;
    align-items: center;
    gap: 15px;
}
.item_heading p {
    color: #0bcee3;
    font-size: 18px;
    font-weight: 500;
}

.item_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.notes_preview {
    display: flex;
    align-items: end;
    gap: 70px;
    max-width: 700px;
}

.notes_preview button {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
}

.form__total {
    max-width: 700px;
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.form__total h1 {
    color: #0bcee3;
    font-weight: 700;
}

.form__total button {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
}

/* add item to invoice 2 */
.invoice2__heading h1 {
    color: #0bcee3;
}
.invoice2__heading h3 {
    color: #ccc;
}

hr {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0bcee3 0%, #46f5ca 100%);
    border: none;
    margin: 25px 0px;
}

.description {
    display: flex;
    align-items: center;
    gap: 45px;
}

.des_content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.des_content h3 {
    color: #0bcee3;
}

.invoice2__form {
    max-width: 800px;
}
.form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 30px;
    border-bottom: 2px solid #ccc;
    padding: 20px 0px;
}
.form__fields:first-child {
    margin-top: 20px;
}

.form__fields:last-child {
    border-bottom: none;
}

.right__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 20px;
}

.right__fields input {
    padding: 20px 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.left_text {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: end;
}

.left_text h3 {
    color: #0bcee3;
}

.form__fields .date__picker_input {
    max-width: 100%;
}

.popup-wrapper h2 {
    color: #0bcee3;
    text-align: center;
}

.popup_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.popup_buttons button {
    margin-top: 40px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
}

.popup-contents .username {
    color: #0bcee3;
    padding: 30px 0px;
    font-size: 24px;
    font-weight: 500;
}

.infos {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 20px;
    padding: 20px 0px;
    border-bottom: 2px solid #0000000d;
}

.info h4 {
    color: #999797;
    font-weight: 400;
}
.info h4:last-child {
    display: flex;
    align-items: center;
    gap: 20px;
}

.popup__footer_button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.popup__footer_button button {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
}

/* popup__header */

.popup__header {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 15px;
}

.popup__header button {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(360deg, #0bcee3 0%, #5080b5 100%);
}

#participantFormpopup {
    display: none; /* Hidden by default */
    justify-content: center;
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

/* account */
.account_header {
    display: flex;
    justify-content: space-between;
  }
  .account_person {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(180deg, #FFFFFF 0%, #1AF2BD 100%);
    padding: 16px 22px;
    border-radius: 8px;
  }
  .account_person h3 {
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
  }
  .account_person img {
    width: 80px;
  }
  .account_policy {
    display: flex;
    gap: 20px;
  }
  .account_policy span {
    color: #0BCEE3;
    font-size: 17px;
    text-decoration: underline;
    text-underline-offset: 7px;
  }
  .account_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0px;
  }
  .account_contact_div h3,
  .account_invoice_div h3 {
    color: #5080B5;
    font-size: 25px;
    font-weight: bold;
  }
  .account_contact,
  .account_invoice {
    margin-top: 20px;
    border: 1px solid #D2D7E0;
    border-radius: 8px;
    background-color: #fff;
  }
  .account_contact h3,
  .account_invoice h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0047AB;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .edit_icon {
    font-size: 0.9rem;
    cursor: pointer;
    color: #0047AB;
  }
  /* Table Styles */
  .account_table {
    display: flex;
    flex-direction: column;
  }
  .row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D2D7E0;
  }
  .row:last-child {
    border-bottom: none;
  }
  .label {
    flex: 0 0 150px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    padding: 20px;
  }
  .value {
    border-left: 1px solid #D2D7E0;
    flex: 1;
    padding: 20px;
    color: rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
  }
  .bold_heading{
    color: #5080B5;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 7px;
  }
  .account_sub_name{
    color: rgba(0, 0, 0, 0.5);
    font-weight: 700;
  }
  .account_sub_change{
    color:#5080B5 ;
    text-decoration: underline;
    text-underline-offset: 7px;
    margin-left: 30px;
  }

  /* reports */
  .report__invoice {
    display: flex;
    justify-content: flex-end;
  }
  .report__invoiceBtn {
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #1AF2BD 100%);
    border-radius: 8px;
    padding: 10px 30px;
  }
  .report__invoiceBtn_count {
    font-size: 20px;
  }
  .report_generate {
    margin-top: 40px;
  }
  .report_generate_heading {
    font-size: 30px;
    color: #5080B5;
    font-weight: 700;
    border-bottom: 1px solid #5080B5;
    width: fit-content;
  }
  .report_generate_form {
    margin-top: 30px;
  }
  .report_generate_form_grid {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 20rem 50rem;
  }
  .report_generate_form_label {
    font-size: 20px;
    color: black;
    font-weight: 700;
    opacity: 50%;
  }
  .search_form_input {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #00000033;
    padding: 15px 20px;
    border-radius: 8px;
    background: #00000008;
  }
  .search_form_input input {
    outline: none;
    border: none;
    background: transparent;
    flex: 1;
    font-size: 16px;
  }
  .report_generate_button {
    width: fit-content;
    margin: 0px auto;
  }

/* participant table */
  .table_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .table_header .search_form_input {
    flex: 1;
    max-width: 600px;
  }
  .participant-custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
  }
  .participant-custom-table th,
  .participant-custom-table td {
    padding: 12px 15px;
    text-align: center;
  }
  .participant-custom-table th {
    color: #333333;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
  }
  .participant-custom-table tbody tr {
    border-bottom: 1px solid #DDDDDD;
  }
  .participant-custom-table tbody tr td {
    color: rgba(0, 0, 0, 0.5);
  }
  .participant-custom-table tbody tr:last-child {
    border-bottom: none;
  }
  .participant-custom-table tbody tr:hover {
    background-color: #F1F1F1;
  }
  .icon-cell {
    text-align: center;
  }

  /* invoice table */
  .invoice-custom-table {
    width: 100%;
    margin: 40px 0;
    border-collapse: collapse;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
  }
  .invoice-custom-table tr {
    border-bottom: 1px solid #E0E0E0;
  }
  .invoice-custom-table tr:last-child {
    border-bottom: none;
  }
  .invoice-custom-table td {
    padding: 12px 15px;
  }
  .invoice-id {
    color: #0BCEE3;
    font-weight: bold;
    font-size: 17px;
  }
  .invoice-custom-table-name {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
  }
  .invoice-custom-table-amount {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-weight: 600;
  }
  .invoice-custom-table-actions {
    white-space: nowrap;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
  }
  .invoice-custom-table-actions .invoice-custom-table-icon {
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    width: 20px;
    height: 20px;
  }
  .custom-table {
    width: 100%;
    margin: 40px 0;
    border-collapse: collapse;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
  }
  .custom-table tr {
    border-bottom: 1px solid #E0E0E0;
  }
  .custom-table tr:last-child {
    border-bottom: none;
  }
  .custom-table td {
    padding: 15px;
  }



  .gradient_btn {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(360deg, #0BCEE3 0%, #5080B5 100%);
  }
