/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: ui-sans-serif, system-ui, sans-serif;
    min-height: 100vh;
}

.button {
    display: inline-flex;
    padding: 0.625rem 0.875rem;
    column-gap: 0.5rem;
    align-items: center;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    background: #6366f1;
    border: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

    .button:hover {
        background: #4f46e5;
    }

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: -0.125rem;
}*/

.alert {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 96%;
    padding: 1rem;
    border-radius: 0.375rem;
    background: #f0cccc;
    transition: all 0.5s ease-in-out;
}

    .alert.active {
        animation: slide-in 0.5s ease-in-out;
    }

    .alert.hide {
        animation: slide-out 0.5s ease-in-out;
    }

@keyframes slide-in {
    from {
        transform: translate(-50%, -100%);
    }

    to {
        transform: translate(-50%, 0);
    }
}

@keyframes slide-out {
    from {
        transform: translate(-50%, 0);
    }

    to {
        transform: translate(-50%, -100%);
    }
}

.alert-inner {
    display: flex;
}

.alert-left {
    flex-shrink: 0;
}

.alert-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #db5552;
}

.alert-body {
    margin-left: 0.75rem;
}

.alert-title {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #a94442;
    
}

.alert-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #a94442;
    
}

@media (min-width: 640px) {
    .alert {
        top: 4%;
        right: 2%;
        width: auto;
    }
}
