﻿.ce_form .application_form .widget{
  padding: 10px;
}

.ce_form .application_form .widget label {
  display: block;
}

.ce_form .application_form .widget select,
.ce_form .application_form .widget input,
.ce_form .application_form .widget textarea{
  margin-top: 8px;
}

.ce_form .application_form .widget select{
  width: 195px;
}

.ce_form .application_form .widget button.submit{
  background-color: #003478;
  transition: background-color .25s ease;
  color: white;
  border: none;
  padding: .8em 1.4em;
  cursor: pointer;
  letter-spacing: .02em;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.ce_form .application_form .widget button.submit:hover{
  background-color: #002554;
}

a.apply_now{
  transition: background-color .25s ease;
  background-color: #003478;
  color: white !important;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1rem;
  padding: .8em 1.4em;
}

a.apply_now::after{
  content: '→';
  display: inline-block;
  transform: translateX(-100%);
  width: 0;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.66, 0.06, 0.4, 0.98);
  font-weight: bold;
}

a.apply_now:hover{
  background-color: #002554;
}

a.apply_now:hover::after{
  display: inline-block;
  transform: translateX(0%);
  width: auto;
  opacity: 1;
  margin-left: 0.5em;
}