.confirmation-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.confirmation-form-overlay .alert {
    padding: 2rem;
    min-width: auto;
    min-height: auto;
    font-size: "1.75rem";
    text-wrap: wrap;
}

.confirmation-form-box {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10rem 10rem var(--shadow);
    text-align: center;
    min-width: 15rem;
    max-width: 20rem;
    animation: fadeIn 0.3s ease-out;
}

.confirmation-form-box p{
    margin-bottom: 20px;
    color: var(--color-text);
}

.confirmation-form-box .btn {
    margin: 0 1.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}