/**
 * Created by Julien Lambé on 19/06/17.
 */

input[type="text"],
input[type="password"],
input[type="checkbox"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="search"],
input[type="radio"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
  border          : 0;
  border-radius   : 3px;
  box-shadow      : 0 2px 4px 0 rgba(0, 67, 175, 0.1);
  background-color: #ffffff;
  border          : 1px solid #ffffff;
  outline         : none;

  &:focus {
    border      : 1px solid #00235b;
    border-color: #00235b;
    box-shadow  : 0 2px 4px 0 rgba(0, 67, 175, 0.1);
    outline     : 0 solid transparent;
  }

  // .mt-repeater-sections & {
  //   box-shadow   : none;
  //   border       : 1px solid #cbd7e8;
  //   border-radius: 0;
  //
  //   &:focus {
  //     border    : 1px solid #00235b;
  //     box-shadow: none;
  //     outline   : 0 solid transparent;
  //   }
  // }
}

input[type="text"],
input[type="password"] {
  width: calc(50% - 10px);

  .mt-repeater-sections & {
    width: 100%;
  }
}

label {
  font-size: 14px;
  color    : #00235b;
}
