.alert-danger {
    color: wheat;
    padding: 0.4rem;
    margin-bottom: 1rem !important;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid transparent;
    background: rgba(255, 0, 0, 0.774);
    border-radius: 5px;
}

.alert-info {
    color: #0c5460;
    padding: 0.4rem;
    margin-bottom: 1rem !important;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid transparent;
    background-color: #11a9c4;
    border-color: #bee5eb;
    border-radius: 5px;
}

.alert-success {
    color: white;
    padding: 0.4rem;
    margin-bottom: 1rem !important;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid transparent;
    background-color: rgba(0, 128, 0, 0.664);
    border-color: #c3e6cb;
    border-radius: 5px;
}

.invalid-feedback{
    margin-bottom: 2rem !important;
    color: red !important;
}

.is-invalid{
    margin-bottom: .5rem !important;
    border: 1px solid red !important
}

@media screen and (max-width: 768px) {
   .invalid-feedback{
        font-size: 12px;
    }
}

.alert-fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
