.rom-field-error {
    border: 2px solid red;
}
.rom-error-message {
    color: red;
    margin-bottom: 10px;
}
#rom-technician-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
}
#rom-technician-form p {
    margin-bottom: 15px;
}
#rom-technician-form input[type="text"],
#rom-technician-form select,
#rom-technician-form textarea,
#rom-technician-form input[type="file"] {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    box-sizing: border-box;
}
#rom-technician-form textarea {
    height: 100px;
}
#rom-technician-form input[type="submit"] {
    display: block;
    margin: 20px auto 0;
    padding: 10px 50px;
    background-color: #bd0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
	font-weight: bold;
}
#rom-technician-form input[type="submit"]:hover {
    background-color: #ffd100;
    border: 1px solid;
    color: red;
}
