﻿.login-section {
    padding-top: 0;
    background-color: #fff;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.custom-wrap {
    height: 70px;
    flex-direction: column;
    padding: 0px 8px;
    align-items: flex-start;
    gap: 10px;
    /* Add other styles as needed */
    border-radius: 8px;
    border: 1px solid var(--Black-1, #CFD3D4);
}

.custom-label {
    color: var(--Black-4, #5E6366);
    padding: .375rem .75rem;
    /* Input/Label */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.custom-control,
.custom-control.select {
    width: 100%;
    color: black; /* Change text color to black */
    border: 1px solid #ced4da; /* Add border to indicate textbox */
    box-sizing: border-box;
    padding: .375rem .75rem; /* Bootstrap form-control padding */
    font-family: Inter, sans-serif; /* Added sans-serif as a fallback */
    font-size: 1rem; /* Bootstrap form-control font size */
    line-height: 1.5; /* Bootstrap form-control line height */
    background-color: #fff; /* Bootstrap form-control background color */
    background-clip: padding-box; /* Bootstrap form-control background clip */
    border-radius: .25rem; /* Bootstrap form-control border radius */
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; /* Bootstrap form-control transition for focus */
}

    .custom-control:focus {
        color: #495057; /* Bootstrap form-control focus color */
        background-color: #fff; /* Bootstrap form-control focus background color */
        border-color: #80bdff; /* Bootstrap form-control focus border color */
        outline: 0; /* Bootstrap form-control focus outline */
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); /* Bootstrap form-control focus box shadow */
    }

    .custom-control::placeholder {
        color: #6c757d; /* Bootstrap form-control placeholder color */
    }

    .custom-control.select {
        padding: .375rem .75rem; /* Adjusted to match Bootstrap form-control */
        height: auto; /* Adjust height as necessary, Bootstrap's select has a height */
        /* other styles might be needed depending on further customization */
    }

.text-right {
    text-align: right;
}

.text-danger {
    color: #dc3545; /* Bootstrap's default color for danger text */
}

.custom-btn {
    background: var(--P, #D54C99);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    transition: background-color 0.3s;
}

    .custom-btn:hover, .custom-btn:focus {
        background-color: #c2185b;
    }


.previous-btn {
    background: var(--P, #02070C); /* The exact pink shade can be sampled from your image */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    transition: background-color 0.3s;
}


/* Footer link styles */
.footer-links {
    text-align: center;
    margin-top: 20px;
    color: #292D32;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

    .footer-links a {
        color: #D54C99; /* Adjust to match the exact link color */
        text-decoration: none;
        margin: 0 5px;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }


/* Step indicator styles */
.step-indicator {
    display: flex;
    justify-content: space-between; /* This will place the items at the start and end of the container */
    color: #ffffff;
    align-items: center;
}

    .step-indicator .step {
        flex-basis: 50%; /* This ensures each step takes up half the width */
        text-align: center; /* This centers the icon and text inside each step */
        padding: 5px 10px;
        border-bottom: 2px solid #3461ff;
    }

    .step-indicator .active {
        color: #3461ff; /* Adjust to match the exact active step color */
        border-bottom: 2px solid #3461ff;
    }

/* Style for icons (if using FontAwesome or similar) */
.step-icon {
    margin-right: 5px; /* Adds spacing between the icon and the title */
}

.step-title {
    /* Add any specific styles for the step title text here */
}


/* Form Wizard Authentication */
wizard-body {
    margin-top: 0;
}

.wizzard-title {
    color: rgba(0, 0, 0, 0.85);
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Header styles */
.wizzard-header {
    padding: 2px -1px;
}

    .wizzard-header img {
        max-width: 70px;
        max-height: 70px;
    }

.wizzard-left {
    padding-top: 0;
    background-color: #fff;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.wizzard-right {
    display: none;
    opacity: 0.15;
    /*background: linear-gradient(89deg, #5570F1 0.51%, rgba(85, 112, 241, 0.60) 99.58%);*/
    padding: 20px; /* Add some padding */
    border-radius: 8px; /* Optional: if you want rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .wizzard-right right-box {
    }

    .wizzard-right .pie-chart {
        width: 393px; /* Adjust as needed */
        height: 392px; /* Adjust as needed */
    }

    .wizzard-right .pie-chart-content {
        margin-top: 20px;
        text-align: center;
        color: black;
    }

        .wizzard-right .pie-chart-content p {
            color: black;
            text-align: center;
            font-family: Poppins;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px; /* 150% */
        }

.custom-col {
    max-width: 20%;
    padding: 2px 2px 2px 2px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .custom-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

   /*Member Area*/
.card-gap {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 5px;
    flex-wrap: wrap;
}

.card-money {
    color: #141417;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 177.778% */
    letter-spacing: -0.36px;
}

.card-text {
    color: rgba(20, 20, 23, 0.70);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 200% */
    letter-spacing: -0.24px;
}

/* Admin Area*/
.admin-card-gap {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 5px;
    flex-wrap: wrap;
}

.admin-card-money {
    color: #141417;
    font-family: Kameron;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 177.778% */
    letter-spacing: -0.36px;
}

.admin-card-text {
    color: rgba(20, 20, 23, 0.70);
    font-family: Kameron;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 200% */
    letter-spacing: -0.24px;
}
.admin-card-link {
    color: rgba(20, 20, 23, 0.70);
    font-family: Kameron;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 200% */
    letter-spacing: -0.24px;
}

.quick-links {
    color: #2E353A;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    padding-left: 8px;
    padding-top: 10px;
}

.quick-btn {
    display: inline-flex; /* changed to inline-flex for proper width management */
    padding: 12px 24px; /* adjust padding to your preference */
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.70);
    text-decoration: none; /* remove underline from link */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* subtle shadow for elevation */
    border: none; /* remove border if there is one */
}

.quick-btn-text {
    color: #292D32;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block; /* makes the text centered vertically */
}

/* Additional styles for the icon */
.quick-btn img {
    margin-right: 8px; /* space between icon and text */
}

.quick-gap {
    gap: 2px;
    padding-bottom: 5px;
}


.form-section {
    color: #ffa00a;
    font-size: 14px;
}


.custom-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

    .custom-table th,
    .custom-table td {
        padding: 10px;
        border: 1px solid #dee2e6; /* Adjust the border color as needed */
    }

    .custom-table th {
        background-color: #f8f9fa; /* Adjust the header background color */
        font-weight: bold;
        text-align: left;
    }


.formTitle {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    /* identical to box height */
    text-transform: capitalize;
    /* Primary */
    color: #3B4295;
}

.formReportTitle {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    text-transform: capitalize;
    color: #3B4295;
}