.keyboard-warning {
    color: #e74c3c;
    font-weight: bold;
    background-color: #fdf2f2;
    padding: 6px 10px;
    border-radius: 4px;
    border-right: 3px solid #e74c3c;
    direction: rtl;
    margin-top: 5px;
    font-size: 12px;
    display: none;
}

.password-help-text {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 10px;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.4;
    display: none;
}

.password-help-text ul {
    margin: 0;
    padding-right: 15px;
}

.password-help-text li {
    margin-bottom: 3px;
}

.field-error {
    background-color: #fdf2f2;
    padding: 5px 8px;
    border-radius: 4px;
    border-right: 3px solid #e74c3c;
}

.form-control.is-invalid {
    border-color: #e74c3c !important;
    background-color: #fdf2f2;
}

.form-control.is-valid {
    border-color: #28a745 !important;
}

.form-control.typing {
    border-color: #3498db;
}

.required-field::after {
    content: " *";
    color: #e74c3c;
}

.validation-error {
    background-color: #fdf2f2;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 8px 12px;
    margin-top: 5px;
    color: #721c24;
    font-size: 12px;
    display: none;
}