/* Museum newsletter form and flash messages */

.flash-container {
    width: min(900px, calc(100% - 2rem));
    margin: 1rem auto;
    position: relative;
    z-index: 20;
}

.flash-message {
    padding: 0.9rem 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 0.5rem;
    background: #211d18;
    color: #f7f1e7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.flash-success { border-color: rgba(105, 180, 125, 0.55); }
.flash-info { border-color: rgba(201, 169, 97, 0.65); }
.flash-error { border-color: rgba(205, 92, 92, 0.65); }

.museum-newsletter-form input:invalid:not(:placeholder-shown) {
    border-color: rgba(205, 92, 92, 0.75);
}

.museum-newsletter-form button { cursor: pointer; }
