.navbar {
    transition: all 1s ease-in-out;
}

.navbar-shadow {
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.footer-shadow {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.input-group .form-control:after {
    content: "*";
    color: red;
}

div.disabled {
    background-color: var(--bs-gray-200);
}

.blurred-text {
    color: transparent;
    position: relative;
    display: inline-block;
    font-weight: bold;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.5);
}

.blurred-text-black {
    color: transparent;
    position: relative;
    display: inline-block;
    font-weight: bold;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.2),
        0 0 2px rgba(0, 0, 0, 0.3),
        0 0 4px rgba(0, 0, 0, 0.4),
        0 0 8px rgba(0, 0, 0, 0.4);
}

.blurred-text-dark {
    color: #023047;
    text-shadow:
        0 2px 6px rgba(2, 48, 71, 0.5),
        0 4px 12px rgba(2, 48, 71, 0.3);
}

.wave {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -1px;
    transition: transform 0.3s ease;
}

.wave-flipped {
    transform: scaleX(-1);
    transform-origin: center;
    margin-bottom: -1px;
    transition: transform 0.3s ease;
}

section {
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}