.fm-danger {
    background-color: #ff5252;
}
.fm-success {
    background-color: #24cd68;
}
.fm-info {
    background-color: #52b7ff;
}
.form-control {
    background-color: #ebeaf0;
    width: 100%;
    height: 40px;
    padding: 0 45px 0 15px;
    text-align: center;
    border: 1px solid #e7e7e7;
    color: #323232;
    direction: ltr;
    font-family: inherit;
}
.form-field {
    position: relative;
    text-align: right;
    margin: 5px 15px;
}
.field-icon {
    position: absolute;
    right: 8px;
    width: 24px;
    bottom: 9px;
    height: 24px;
    color: #aeaeae;
    font-size: 19px;
    text-align: center;
}
.form-field .field-error {
    color: #ff4545;
    font-size: 12px;
    position: absolute;
    bottom: 41px;
    left: 2px;
    transition: 0.2s opacity;
    opacity: 0;
    visibility: hidden;
}
.form-field.has-error .field-error {
    visibility: visible;
    opacity: 1;
}
.form-field.has-error .form-control {
    border-color: #ffb2b2;
    background-color: #fff1f1;
}
.form-control.rtl {
    direction: rtl;
}
.form-control:focus {
    outline: none;
    border-color: #86aed2;
}
textarea.form-control{
    padding-top: 9px;
    padding-bottom: 9px;
}