* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

/* form-header */
.form-header {
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* height: auto; */
    padding: 15px 0;
    background: #d3d6e9;
    z-index: 1;
    margin-bottom: 30px;
}

.form-header-logo-wrap {
    text-align: center;
}

.form-header-logo-wrap img {
    width: 300px;
    max-width: 100%;
    height: auto;
}

/* form-header */

/* info-form */
.info-form-main {
    position: relative;
    margin-top: 0;
    margin-bottom: 30px;
}

.info-form-main-box {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    border: none;
    padding: 50px 45px;
    border-radius: 24px;
    background: #fff;
    text-transform: capitalize;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.info-form-main-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #34744c 0%, #4fba64 50%, #527ea5 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.info-form-main-box:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title-bar {
    background: linear-gradient(135deg, #34744c 0%, #4fba64 100%);
    padding: 22px 30px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins";
    margin: 0 0 35px 0 !important;
    border-radius: 14px;
    letter-spacing: 1.2px;
    box-shadow:
        0 8px 25px rgba(68, 228, 62, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-title-bar::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.info-form-main-box form {
    position: relative;
    padding: 0;
}

.info-form-main-box .row {
    margin-left: -10px;
    margin-right: -10px;
}

.info-form-main-box .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.info-form-input-wrap {
    margin-bottom: 28px;
    position: relative;
}

.info-form-input-wrap:last-child {
    margin-bottom: 0;
}

.info-form-input-wrap p {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 10px;
}

.statement-descp-wrap {
    display: block;
    width: 50%;
    margin: 0 auto;
}

.statement-descp-wrap p {
    color: #000;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.statement-descp-wrap span {
    color: #434343;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

.info-form-input-wrap label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    text-transform: capitalize;
    letter-spacing: 0.4px;
    margin-top: 10px;
    position: relative;
    padding-left: 8px;
}

.info-form-input-wrap label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: #34744c;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-form-input-wrap:focus-within label::before {
    opacity: 1;
}

.info-form-input-wrap input,
.info-form-input-wrap select,
.info-form-input-wrap textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #e8ecf1;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 16px 20px;
    outline: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-form-input-wrap input:focus,
.info-form-input-wrap select:focus,
.info-form-input-wrap textarea:focus {
    border-color: #34744c;
    background: #fff;
    box-shadow:
        0 0 0 4px rgba(62, 228, 87, 0.12),
        0 4px 12px rgba(228, 87, 62, 0.15);
    transform: translateY(-3px);
}

.info-form-input-wrap input:hover:not(:disabled):not(:focus),
.info-form-input-wrap select:hover:not(:disabled):not(:focus),
.info-form-input-wrap textarea:hover:not(:disabled):not(:focus) {
    border-color: #d0d7de;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-form-input-wrap input:disabled,
.info-form-input-wrap select:disabled,
.info-form-input-wrap textarea:disabled {
    background: #f5f7fa;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
    border-color: #dee2e6;
    box-shadow: none;
}

.info-form-input-wrap input,
.info-form-input-wrap select::placeholder {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid rgb(204 204 204);
}

.info-form-input-wrap select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2334744c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.info-form-input-wrap select option,
.info-form-input-wrap select optgroup {
    color: #2c3e50;
    padding: 12px;
    background: #fff;
}

.info-form-input-wrap select option:hover {
    background: #f8f9fa;
}

.info-form-input-wrap input::placeholder,
.info-form-input-wrap textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.card-type-box {
    position: relative;
    padding: 8px 18px 15px;
}

.card-type-box label {
    color: #000;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.card-type-content-box-wrap {
    display: flex;
    align-items: center;
}

.card-type-content-box {
    display: flex;
    align-items: center;
}

.card-type-content-box:nth-child(2) {
    margin-left: 15px;
}

.card-type-content-box input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    outline: none;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #a1a1a1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-type-content-box input[type="radio"]:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.card-type-content-box input[type="radio"]:checked::before {
    background: #34744c;
}

.card-type-content-box p {
    color: #494949;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 6px;
}

.credit-card-info-box {
    position: relative;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin: 25px 0 35px 0 !important;
    border-radius: 12px;
    border: 2px solid #e8ecf1;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.credit-card-info-box:hover {
    border-color: #34744c;
    box-shadow: 0 4px 12px rgba(228, 87, 62, 0.1);
}

.credit-card-info-box label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 18px;
    text-transform: capitalize;
    display: block;
}

.credit-card-info-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-flow: wrap;
}

.credit-card-info-box ul li {
    display: flex;
    align-items: center;
    margin-right: 18px;
}

.credit-card-info-box ul li input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    outline: none;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #a1a1a1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-card-info-box ul li input[type="radio"]:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.credit-card-info-box ul li input[type="radio"]:checked::before {
    background: #34744c;
}

.credit-card-info-box ul li img {
    margin-left: 12px;
    width: 80px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.info-form-bottom-content {
    position: relative;
    padding: 30px 0 20px;
    text-align: center;
    border-top: 2px solid #f0f0f0;
    margin-top: 30px;
}

.info-form-bottom-content input[type="submit"],
.info-form-submit-btn input[type="submit"] {
    padding: 18px 50px;
    line-height: 1;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, #34744c 0%, #4fba64 100%);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    border-radius: 14px;
    min-width: 180px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 25px rgba(84, 228, 62, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.info-form-bottom-content input[type="submit"]::before,
.info-form-submit-btn input[type="submit"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.info-form-bottom-content input[type="submit"]:hover,
.info-form-submit-btn input[type="submit"]:hover {
    background: linear-gradient(135deg, #527ea5 0%, #34744c 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(73, 228, 62, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.info-form-bottom-content input[type="submit"]:hover::before,
.info-form-submit-btn input[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

.info-form-bottom-content input[type="submit"]:active,
.info-form-submit-btn input[type="submit"]:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 6px 20px rgba(62, 228, 81, 0.4);
}

.info-form-btn {
    text-align: center;
    margin-top: 20px;
}

.term-condition-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    line-height: 20px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.term-condition-wrap:hover {
    border-color: #34744c;
    box-shadow: 0 4px 12px rgba(228, 87, 62, 0.1);
}

.term-condition-wrap input[type="checkbox"] {
    accent-color: #34744c;
    border: none;
    outline: none;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.term-condition-wrap p {
    color: #333;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 12px;
    line-height: 1.6;
}

.info-form-submit-btn a {
    text-decoration: none;
    display: block;
    max-width: fit-content;
    background: #34744c;
    padding: 14px 35px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(73, 228, 62, 0.3);
}

.info-form-submit-btn a:hover {
    background: #527ea5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(73, 228, 62, 0.4);
}

.cat-selection-box {
    position: relative;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #e8ecf1;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.cat-selection-box:hover {
    border-color: #34744c;
    box-shadow: 0 4px 12px rgba(228, 87, 62, 0.1);
}

.cat-selection-list {
    padding-left: 0;
    margin-top: 20px;
}

.cat-selection-list ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    flex-flow: wrap;
}

.cat-selection-list ul li {
    display: flex;
    align-items: flex-start;
    line-height: 15px;
    margin-right: 10px;
    width: 47%;
    margin-bottom: 20px;
}

.cat-selection-list ul li input[type="checkbox"] {
    accent-color: #34744c;
    border: none;
    outline: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cat-selection-list ul li p {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
    margin-left: 10px;
    cursor: pointer;
}

#card-element {
    padding: 20px 24px;
    border: 2px solid #e8ecf1;
    margin: 0px;
    border-radius: 12px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#card-element:hover {
    border-color: #d0d7de;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#card-element:focus-within {
    border-color: #34744c;
    background: #fff;
    box-shadow:
        0 0 0 4px rgba(228, 87, 62, 0.12),
        0 4px 12px rgba(228, 87, 62, 0.15);
    transform: translateY(-2px);
}

#card-errors {
    color: #527ea5;
    margin: 12px 0;
    padding: 12px 15px;
    background: #fee;
    border-radius: 8px;
    border-left: 4px solid #527ea5;
    font-size: 14px;
    font-weight: 500;
}

.form-notice {
    width: 950px;
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 20px 30px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left: 5px solid;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-notice.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left-color: #28a745;
}

.form-notice.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #4fba64;
    border-left-color: #527ea5;
}

/* Billing Details Section */
.billing-details-section {
    margin: 35px 0;
    padding: 0;
    position: relative;
}

.billing-details-section .billing-title {
    margin-bottom: 25px !important;
    background: linear-gradient(135deg, #34744c 0%, #4fba64 100%);
    position: relative;
    overflow: hidden;
}

.billing-details-content {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.billing-details-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #34744c 0%, #4fba64 50%, #34744c 100%);
    border-radius: 16px 16px 0 0;
}

.billing-details-content:hover {
    border-color: #34744c;
    box-shadow: 0 8px 30px rgba(228, 87, 62, 0.12);
    transform: translateY(-2px);
}

.billing-details-section .info-form-input-wrap {
    margin-bottom: 22px;
}

.billing-details-section .info-form-input-wrap label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

.billing-details-section .info-form-input-wrap label::after {
    content: "";
    width: 4px;
    height: 4px;
    background: #34744c;
    border-radius: 50%;
    margin-left: 6px;
    opacity: 0.6;
}

.billing-details-section .info-form-input-wrap input,
.billing-details-section .info-form-input-wrap select {
    border: 2px solid #e0e6ed;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.billing-details-section .info-form-input-wrap input:focus,
.billing-details-section .info-form-input-wrap select:focus {
    border-color: #34744c;
    background: #fff;
    box-shadow:
        0 0 0 4px rgba(228, 87, 62, 0.1),
        0 4px 12px rgba(228, 87, 62, 0.15);
    transform: translateY(-2px);
}

.billing-details-section
    .info-form-input-wrap
    input:hover:not(:disabled):not(:focus),
.billing-details-section
    .info-form-input-wrap
    select:hover:not(:disabled):not(:focus) {
    border-color: #d0d7de;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.billing-details-section .row {
    margin-left: -8px;
    margin-right: -8px;
}

.billing-details-section .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

/* Logo styling */
.logo-container {
    text-align: center;
    margin-bottom: 35px;
    padding: 25px 0;
}

.logo-container img,
.info-form-main-box > div[style*="text-align: center"] img {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
}

.logo-container img:hover,
.info-form-main-box > div[style*="text-align: center"] img:hover {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@media (max-width: 575px) {
    body {
        padding: 10px 0;
    }

    .info-form-main-box {
        padding: 25px 20px;
        border-radius: 12px;
        margin: 10px;
    }

    .form-title-bar {
        font-size: 18px;
        padding: 15px 20px;
    }

    .credit-card-info-box {
        margin-bottom: 20px;
    }

    .statement-descp-wrap {
        width: 100%;
        margin: 0;
    }

    .cat-selection-list {
        padding-left: 0;
        margin-bottom: 20px;
    }
    .cat-selection-list ul {
        display: block;
    }
    .cat-selection-list ul li {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .info-form-bottom-content input[type="submit"],
    .info-form-submit-btn input[type="submit"] {
        width: 100%;
        padding: 16px;
    }

    .logo-container img {
        max-width: 180px;
    }

    .billing-details-content {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .billing-details-section .info-form-input-wrap {
        margin-bottom: 20px;
    }

    .billing-details-section .row > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
}
/* info-form */
