*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.container {
  padding: 1px 0;
  height: 100%;
  width: 100%;
  color: #fff;
  font-family: "Comfortaa", "Helvetica", sans-serif;
}

.container::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -2;
  background-image: radial-gradient(circle at 50% 0,#84e8fc 0,#0d77b4);

}

.container::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -22%;
  left: -71%;
  z-index: -1;
  background-image: url("../images/bg-kortical-abstract.png");
  background-repeat: no-repeat;
  background-position: right;
  background-attachment: fixed;
  transform: rotate(30deg);
}

.login--wrapper {
  margin: 30px auto;
}

.login--header {
  max-width: 400px;
  margin: 60px auto 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.login--header p {
  margin: 0;
}

.login--footer {
  max-width: 300px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.login-icon-field {
  height: 250px;
  width: 100%;
}

.login-icon-field--login {
  width: 100%;
}

.login-icon {
  margin: 50px 65px;
}

.login-form {
  padding: 8px 20px 20px;
  width: 100%;
}

.username-row {
  position: relative;
  height: 40px;
  border: 1px solid white;
  border-radius: 5px;
  margin-bottom: 10px;
  background: rgb(255,255,255, 0.2);
}

.password-row {
  position: relative;
  height: 40px;
  border: 1px solid white;
  border-radius: 5px;
  margin-bottom: 10px;
  background: rgb(255,255,255, 0.2);
}

.password-icon,
.user-icon {
  margin: 5px;
}

.password-icon .key-path,
.user-icon .user-path {
  fill: rgba(10,10,10,0);
  stroke: #fff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  -webkit-animation: dash 3s 0.3s linear forwards;
  animation: dash 3s 0.3s linear forwards;
}

.user-icon .user-path {
  -webkit-animation: dash 3s 0.8s linear forwards;
  animation: dash 3s 0.8s linear forwards;
}

input {
  position: absolute;
  width: 195px;
  height: 30px;
  margin: 4px 0 5px;
  background: transparent;
  border: none;
  padding-left: 5px;
  font-size: 0.9rem;
}

input:focus,
button:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  color: rgba(255,255,255,0.4);
}

input::-moz-placeholder {
  color: rgba(255,255,255,0.4);
}

.call-to-action {
  width: 100%;
}

button {
  display: block;
  width: 100%;
  padding: 17px 0;
  margin: 10px 0 20px 0;
  font-weight: 700;
  color: #fff;
  background-color: #F3C728;
  border: none;
  border-radius: 25px;
  transition: background-color 0.10s ease-in-out;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button:hover {
  background-color: #e0b826;
}

button:active {
  background-color: #ffd22d;
}

.mlops__title {
  font-size: 32px;
  text-align: center;
  font-weight: 500;
  margin-top: 0;
}

#form-error__wrapper {
  border-radius: 5px;
  border: 1px solid #EB5757;
  margin-bottom: 20px;
  overflow: hidden;
}

#form-error__text {
  position: relative;
  text-align: left;
  background: #EB5757;
  color: #fff;
  padding: 12px 10px 12px 40px;
}

#form-error__text::before {
  content: "";
  position: absolute;
  background-image: url(../images/icons/icon-status--warning.svg);
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}

.k-chat__login {
  background: #111821;
  padding: 20px;
}

.login--header .k-chat__login-helper-text {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  text-align: left;
  margin-bottom: 20px;
}

#k-chat__login-link {
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.k-chat__login--logo {
  width: 26px;
  margin-right: 10px;
}

.k-chat__login--arrow {
  width: 16px;
  margin-left: 10px;
}

.text-error {
  justify-content: center;
  color: red;
  margin-bottom: 10px;
  font-weight: bold;
}

.text-info {
  justify-content: center;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}

p {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: rgba(255,255,255,0.4);
  margin: 0 16px 15px;
}

p a {
  color: #fff;
  text-decoration: underline;
  margin: 0;
}

@media screen and (max-width: 350px) {
  button {
    width: 93%;
    margin: 9px;
  }
}

label,
p a:hover {
  -webkit-cursor: pointer;
  cursor: pointer;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}