html,
body {
    /*min-height: 100vh;
    display: grid;
    place-items: center;*/
    height: 100%;
    margin: 0;
    font-family: "Figtree", Arial, sans-serif;
}
.form-container {
    padding: 1rem;
    width: 100%;
    max-width: 450px;
}
/* DESKTOP VIEW */
@media (min-width: 768px) {
    .split-desktop {
        height: 100vh;
        display: flex;
    }

    .image-side {
        flex: 1;
    }

    .form-side {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f8f9fa;
    }
    .tikbox-container {
        padding: 0px;
        margin-bottom: 15px;
    }
}

/* MOBILE VIEW */
@media (max-width: 767.98px) {
    /* .image-side {
        height: 30vh;
    } */
    .image-side {
        height: 21vh;
    }
    .form-side {
        height: 70vh;
        display: flex;
        align-items: start;
        justify-content: center;
        background-color: #f8f9fa;
        overflow-y: auto;
        padding-top: 2rem;
    }
    .dpo {
        display: none;
    }
    .spacer {
        display: none;
    }
}
.thank-you-box {
    max-width: 500px;
    margin: 80px auto;
}
.icon-success {
    font-size: 4rem;
    color: #28a745;
}
.icon-fail {
    font-size: 4rem;
    color: #dc3545;
}
.evernew-label {
    font-family: "Figtree", Arial, sans-serif;
    font-size: 18px;
}
.btn-primary-evernew {
    color: #07091aff;
    background-color: #edbcc8;
    width: 100%;
    border-radius: 25px !important; /* fully rounded */
    padding: 8px 25px !important; /* nicer spacing */
    font-size: 18px;
    box-shadow: none;
    font-weight: bold;
    margin-top: 12px;
    font-family: "Figtree", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    /*border: 1.5px solid #b89568;*/
    border: 1.5px solid #d2d2d2;
}
.input-evernew {
    border-radius: 25px;
    padding: 10px 15px;
    border: 2px solid #edbcc8;
}
.sample-button {
    color: #452814ff;
    background-color: #4e3422ff;
    border-color: #07091aff;
    box-shadow: #c0916cff;
}
.floating-heart {
    position: fixed;
    left: 92%;
    top: 42%;
    z-index: 20;

    font-size: 90px;
    color: #ff0000;

    animation: heartFloatCenter 4.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heartFloatCenter {
    0%,
    100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) translateY(0) scale(0.85);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(-22px) scale(1.08);
    }
}
