.fp-section {
    position: relative;
    overflow: hidden;
    background: #f4f5f9;
    padding: 70px 15px 50px;
    margin-top: 80px;
}

    .fp-section::before, .fp-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(2px);
        opacity: .55;
        z-index: 0;
    }

    .fp-section::before {
        width: 340px;
        height: 340px;
        background: linear-gradient(135deg, #ff6a6a, #d9232d);
        top: -140px;
        left: -120px;
    }

    .fp-section::after {
        width: 260px;
        height: 260px;
        background: linear-gradient(135deg, #ffc9c9, #f16330);
        bottom: -110px;
        right: -90px;
    }

.fp-card {
    position: relative;
    z-index: 1;
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
    padding: 56px 34px 30px;
    animation: fpCardIn .45s ease;
}

@media (max-width: 575px) {
    .fp-card {
        padding: 52px 20px 26px;
    }
}

@keyframes fpCardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fp-badge {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d9232d 0%, #a8171f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(217,35,45,.4);
    border: 4px solid #fff;
}

    .fp-badge i {
        color: #fff;
        font-size: 1.5rem;
    }

.fp-heading {
    text-align: center;
    margin-bottom: 20px;
}

    .fp-heading h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: #212529;
        margin: 0 0 4px;
        font-size: 1.4rem;
    }

    .fp-heading p {
        color: #6c757d;
        font-size: .85rem;
        margin: 0;
        line-height: 1.5;
    }

.fp-msg {
    display: block;
    text-align: center;
    font-weight: 600;
    margin-bottom: 12px;
}

.fp-group {
    position: relative;
    margin-bottom: 18px;
}

    .fp-group label {
        font-size: .72rem;
        font-weight: 700;
        color: #495057;
        text-transform: uppercase;
        letter-spacing: .02em;
        margin-bottom: 6px;
        display: block;
    }

    .fp-group i.fp-icon {
        position: absolute;
        left: 16px;
        top: calc(50% + 11px);
        transform: translateY(-50%);
        color: #d9232d;
        opacity: .8;
        pointer-events: none;
        font-size: .92rem;
    }

    .fp-group .form-control {
        padding-left: 40px;
        height: 46px;
        border-radius: 30px;
        border: 1px solid #e4e6eb;
        background: #f8f9fb;
        font-size: .9rem;
        transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

        .fp-group .form-control::placeholder {
            color: #98a1ab;
        }

        .fp-group .form-control:focus {
            border-color: #d9232d;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(217,35,45,.1);
        }

.fp-btn {
    width: 100%;
    border: none;
    border-radius: 30px;
    padding: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
    background: linear-gradient(135deg, #d9232d 0%, #a8171f 100%);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .fp-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(217,35,45,.38);
        color: #fff;
    }

.fp-footer-link {
    text-align: center;
    margin-top: 18px;
    font-size: .88rem;
    color: #6c757d;
}

    .fp-footer-link a {
        color: #d9232d;
        font-weight: 700;
    }
