body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.login-container {
  display: flex;
  justify-content: center;
}

.login-panel {
  display: inline-block;
  padding: 32px 48px 0px 48px;
  border: 1px solid #EEE;
  border-radius: 4px;
}

.btn, .btn-large {
  background-color: #4286f4;
}
.btn:hover, .btn-large:hover {
  background-color: #5290f5;
}

 /* label focus color */
.input-field input[type=text]:focus + label {
  color: #4286f4 !important;
}
/* label underline focus color */
.input-field input[type=text]:focus {
  border-bottom: 1px solid #4286f4 !important;
  box-shadow: 0 1px 0 0 #4286f4 !important;
}
 /* valid color */
.input-field input[type=text].valid {
  border-bottom: 1px solid #4286f4;
  box-shadow: 0 1px 0 0 #4286f4;
}

/* label focus color */
.input-field input[type=password]:focus + label {
  color: #4286f4 !important;
}
/* label underline focus color */
.input-field input[type=password]:focus {
  border-bottom: 1px solid #4286f4 !important;
  box-shadow: 0 1px 0 0 #4286f4 !important;
}
/* valid color */
.input-field input[type=password].valid {
  border-bottom: 1px solid #4286f4;
  box-shadow: 0 1px 0 0 #4286f4;
}
