loginButton?.layer.borderWidth = 5
let animation:CABasicAnimation = CABasicAnimation()
animation.keyPath = "borderColor"
animation.fromValue = UIColor.green.cgColor
animation.toValue = UIColor.cyan.cgColor
animation.duration = 10.0
animation.fillMode = kCAFillModeForwards
animation.isRemovedOnCompletion = false
loginButton?.layer.add(animation, forKey: nil)