/* notifications.css */

#global-alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    /* transform: translateX(-50%); */
    z-index: 1055; /* выше navbar, модалок не перекрывает */
    width: calc(100% - 40px);
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.global-alert {
    backdrop-filter: blur(6px);
    opacity: 0.95;
}

.error-border {
    border: 2px solid red !important;
    outline: none;
}
  
.error-border:focus {
    border-color: red !important;
}