/* auth-toast.css — стиль для сповіщень (toast) під дизайн сайту */
.auth-toast {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    max-width: 90vw;
    background: #232e3e;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 20px 32px 20px 24px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
}
.auth-toast.show {
    opacity: 1;
    pointer-events: auto;
    top: 48px;
}
.auth-toast--success {
    background: linear-gradient(90deg, #ff7a3d 0%, #ffb86c 100%);
    color: #fff;
}
.auth-toast--error {
    background: linear-gradient(90deg, #e74c3c 0%, #ff7a3d 100%);
    color: #fff;
}
.auth-toast__icon {
    font-size: 22px;
    margin-right: 8px;
    display: flex;
    align-items: center;
}
.auth-toast__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    margin-left: auto;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.auth-toast__close:hover {
    opacity: 1;
}
@media (max-width: 600px) {
    .auth-toast {
        padding: 14px 12px 14px 14px;
        font-size: 15px;
    }
}
