.alert,
.form-alert {
    position: relative;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert {
    padding: 0.4rem 0.65rem;
    margin: 0.5rem 0;
    font-weight: 700;
    width: 100%;
    min-height: 1.8rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-info {
    background: rgb(249, 228, 145);
    color: #8a6d3b;
}

.alert-success {
    background: rgba(149, 244, 117, 0.9);
    color: rgb(26, 90, 5);
}

.liveValidateMessage {
    top: -0.3rem;
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease-out;
    transform: translateY(60%);
}

.liveValidateMessage--visible {
    opacity: 1;
    transform: translateY(-17%);
}
