@import url('https://fonts.googleapis.com/css?family=Roboto:300,500');

html {
  height: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

body {
  min-height: 100%;
  background: #ffffff url(../../../common/sensefly/img/background.svg) center;
  background-size: cover;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#kc-logo-wrapper {
  display: none;
}

#kc-container {
  min-width: 460px;
  max-width: 460px;
  background: linear-gradient(225deg, transparent 34px, #00243b 0), linear-gradient(225deg, #f5bb23 32px, transparent 0);
  color: #bdccd4;
  padding: 40px 70px;
  box-sizing: border-box;
  border-left: 4px solid #f5bb23;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  margin: 40px 20px;
}

#kc-header-wrapper {
  padding-top: 77px;
  background: url(../../../common/sensefly/img/senseFly-white.svg) no-repeat top center;
}

.kc-logo-text span {
  display: none;
}

input, select {
  font-size: 18px;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 24px;
  border-radius: 6px;
  border: none;
  margin: 8px 0;
  font-weight: 300;
}

input::placeholder {
  color: #bdccd4;
  opacity: 1;
}

input[type="text"], input[type="password"], select {
  box-shadow: inset 0 0 6px rgba(20, 38, 53, .3);
}

input[type="button"], input[type="submit"] {
  background: #f5bb23;
  color: #00243b;
  font-weight: 500;
  transition: .2s;
  cursor: pointer;
}

input[type="button"]:hover, input[type="submit"]:hover {
  background: #cd8f23;
}

label {
  display: block;
  margin-top: 10px;
}

a {
  color: #f5bb23;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: .2s;
}

a:hover {
  color: #cd8f23;
}

#kc-form-options {
  text-align: right;
  margin: 3px 0 20px;
}

#kc-form-options a, .navigation a {
  color: #c2d1de;
}

#kc-form-options a:hover, .navigation a:hover {
  color: #f0f0f0;
}

#kc-form-buttons {
  display: flex;
  justify-content: right;
}

#kc-form-buttons > * {
  max-width: 67%;
  flex-grow: 1;
  align-self: center;
}

#kc-registration {
  flex-grow: 0.5;
}

@media screen and (max-width: 640px) {
  #kc-container {
    min-width: 240px;
    max-width: 460px;
    width: 95%;
    padding: 40px 20px;
  }
}

.alert-error {
  background-color: #d80a1f;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 6px;
  font-weight: 500;
  margin: 20px 0;
}

label.error {
  margin: -2px 0 15px 0;
  color: #d80a1f;
  border-radius: 6px;
  font-weight: 500;
}

#kc-header-wrapper {
  font-weight: 500;
  font-size: 18px;
}

.kc-feedback-text {
  font-size: 14px;
}

.kc-feedback-text a {
  color: #c2d1de;
}