form {
  margin: 0px;
}
/**
* Make the field a flex-container, reverse the order so label is on top.
*/

.field {
  display: block;
  position: relative;
  flex-flow: column-reverse;
  margin: 0 0 12px 0;
}
/**
* Add a transition to the label and input.
* I'm not even sure that touch-action: manipulation works on
* inputs, but hey, it's new and cool and could remove the
* pesky delay.
*/
label, input {
  transition: all 0.2s;
  touch-action: manipulation;
}

input {
  -webkit-appearance: none;
  border: 1px solid #e1e2e3;
  cursor: text;
  color:rgb(34, 34, 34);
  font-size: 1.0em;
  font-family: inherit;
  font-weight: 200;
  min-height: 29px;
  padding: 7px 15px;
  width: 368px;
}

input:focus {
  outline: 0;
  border-bottom: 1px solid #666;
}

label {
  color: #6f7678;
  letter-spacing: 0.05em;
  font-size: 0.6em;
  position: absolute;
  left: 16px;
  top: 2px;
}

#GoToSignin {
  margin-top: 15px;
}

/**
* Translate down and scale the label up to cover the placeholder,
* when following an input (with placeholder-shown support).
* Also make sure the label is only on one row, at max 2/3rds of the
* field—to make sure it scales properly and doesn't wrap.
*/
input:placeholder-shown + label {
  cursor: text;
  max-width: 66.66%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(0, 1.2rem) scale(1.5);
}
/**
* By default, the placeholder should be transparent. Also, it should
* inherit the transition.
*/
::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
}
/**
* Show the placeholder when the input is focused.
*/
input:focus::-webkit-input-placeholder {
  opacity: 1;
}
/**
* When the element is focused, remove the label transform.
* Also, do this when the placeholder is _not_ shown, i.e. when
* there's something in the input at all.
*/
input:not(:placeholder-shown) + label,
input:focus + label {
  transform: translate(0, 0) scale(1);
  cursor: pointer;
}

input:disabled {
  background: transparent;
  border: none;
  color: #444;
  cursor: default;
}