 /* Style for the red bubble */
 input.error, select.error, textarea.error {
    border: 1px solid red !important; 
}
 
 .error-bubble {
    color: #fff;
    background-color: #e74c3c;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    position: absolute;
    margin-top: -5px;
    margin-left: 20px;
    z-index: 1000;
}

/* Position the error bubble relative to the input */
.error-bubble::after {
    content: '';
    position: absolute;
    top: -5px;
    left:50px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #e74c3c transparent;
}


.required {
    position: relative; /* Ensure the bubble is positioned correctly */
}