.momo-required-asterisk {
    color: #dc3232; /* Red color for asterisk */
    margin-left: 3px;
    font-weight: bold;
}

.momo-error-message {
    color: #dc3232; /* Red color for error message */
    margin-top: 5px;
    font-size: 14px;
    position: relative;
    padding-left: 25px; /* Space for the icon */
}

.momo-error-message::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    /* background-color: #dc3232; */ /* Background color of the circle */
    border: 1px solid #dc3232;
	color: #dc3232; /* Color of the exclamation mark */
    border-radius: 50%; /* Makes the background a circle */
    text-align: center;
    line-height: 18px; /* Centers the exclamation mark vertically */
    font-size: 12px; /* Size of the exclamation mark */
    font-weight: bold;
}

.momo-error {
	border: 1px solid!important;
    border-color: #dc3232 !important; /* Red border for error input */
}

