$(document).ready( function() {
  $("input").focus( function() {
    $(this).css('border','1px solid #FFB447')
  })
  $("textarea").focus( function() {
    $(this).css('border','1px solid #FFB447')
  })
    $(".text").focus( function() {
    $(this).css('border','none')
  })
  $("input").blur( function() {
    $(this).css('border','1px solid #cccccc')
  })
    $("textarea").blur( function() {
    $(this).css('border','1px solid #cccccc')
  })
  $(".text").blur( function() {
    $(this).css('border','none')
  })
});

