.overlay, .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.overlay img {
    animation: 1s linear infinite load;
}

@keyframes load {
    to {
        transform: rotate(360deg);
    }
}

.modal {
    width: 75%;
    max-width: 500px;
    border-radius: 1rem;
    padding: 2rem;
    background-color: var(--secondary-color);
}

.modal-heading {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-heading span {
    font-size: 1.25rem;
    font-weight: bold;
}

.modal-close-btn {
    font-size: 1.5rem;
    background: transparent;
}

.form-label-input-container {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.form-submit-btn {
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}