.modal-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.modal-alert__container {
    text-align: center;
    width: 100%;
    max-width: 500px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    margin: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    animation: fadeScaleModalAlert 0.5s ease-out;
}

@keyframes fadeScaleModalAlert {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.modal-alert__header {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-alert__circle {
    background: var(--color-white);
    width: 80px;
    height: 80px;
    border-radius: 80px;
}

.modal-alert__icon {
    width: 60px;
    height: 60px;
    margin-top: 10px;
}

.modal-alert__body {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}


.modal-alert__title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    padding-bottom: var(--spacing-md);
}

.modal-alert__footer {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.modal-alert__close-btn {
    width: 50%;
}

.modal-alert-success .modal-alert__header {
    background: var(--color-success);
}

.modal-alert-success .modal-alert__icon {
    color: var(--color-success-dark);
}

.modal-alert-error .modal-alert__header {
    background: var(--color-error);
}

.modal-alert-error .modal-alert__icon {
    color: var(--color-error-dark);
}
