
.fpp_container {
    /* height: 100vh; */
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}


.fpp_container {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;

    }

    .card {
        border-radius: 10px;
        box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
        width: 600px;
        /* height: 260px; */
        background-color: #ffffff;
        padding: 10px 30px 40px;
    }

    .card h3 {
        font-size: 22px;
        font-weight: 600;

    }

    .drop_box {
        margin: 10px 0;
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 3px dotted #a3a3a3;
        border-radius: 5px;
    }

    .drop_box h4 {
        font-size: 16px;
        font-weight: 400;
        color: #2e2e2e;
    }

    .drop_box p {
        margin-top: 10px;
        margin-bottom: 20px;
        font-size: 12px;
        color: #a3a3a3;
    }

    .form input {
        margin: 10px 0;
        width: 100%;
        background-color: #e2e2e2;
        border: none;
        outline: none;
        padding: 12px 20px;
        border-radius: 4px;
    }

    /* Base button styles */
    button {
        position: relative;
        /* Needed to position the spinner inside the button */
        padding: 10px 15px;
        font-size: 16px;
        cursor: pointer;
        overflow: hidden;
        /* Hides the original text when it's replaced by the spinner */
    }

    /* Styles when the button is busy */
    button.busy {
        cursor: not-allowed;
        color: transparent;
        /* Hides the original text */
        pointer-events: none;
        /* Prevents further clicks while busy */

    }

    /* The spinner pseudo-element */
    button.busy::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1em;
        height: 1em;
        margin-top: -0.5em;
        /* Center vertically */
        margin-left: -0.5em;
        /* Center horizontally */
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #fff;
        /* The color of the spinning part */
        animation: spin 1s linear infinite;
        /* Apply the spin animation */
    }
    button.wide {
        text-decoration: none;
        background-color: #005af0;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        outline: none;
        border-radius: 0.5rem;
        transition: 0.3s;
        width: 100%;
    }

    button.wide.busy {
        color:#010101;
        background-color: #a3a3a3;
    }

    button.wide:hover{
        text-decoration: none;
        background-color: #ffffff;
        color: #005af0;
        padding: 10px 20px;
        border: none;
        outline: 1px solid #010101;
    }
    #file-display {
        display:none;
    }
    #file-upload-cancel-btn {
        margin-top: 0.5rem;
        color:#dc3232;
        background-color: #fff;
        outline: 1px solid #dc3232;
    }
    a.info-link img{
        width: 1.5rem;
        height: 1.5rem;
        position: absolute;
        cursor: pointer;
    }

}

/* Keyframes for the spinner animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}