* {
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
  font-family: Open Sans;
  background: linear-gradient(to bottom, #099, #00a789);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #00000033;
}

body {
  min-height: 100vh;
  height: 100%;
  background: url("../images/triangle.svg") no-repeat;
  background-position: 220px center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  overflow: hidden auto;
  gap: 2rem;
  padding: 0 0 24px 120px;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 18vh;
  gap: 16vh;
}

footer {
  color: #fff;
  font-size: 15px;
}

.ish-logo img {
  width: 192px;
  height: 34px;
}

h1 {
  margin-top: 0;
  margin-bottom: 3rem;
  color: #fff;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

h2 {
  margin-bottom: 2rem;
  margin-top: 0;
  color: #fff;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

h3 {
  margin-top: 0;
  margin-bottom: 2rem;
  padding: 0;
  color: #fff;
  font-family: Open Sans;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  height: 32px;
  padding-left: 30px;
  color: #fff;
  background-color: #0000;
  border: none;
  font-size: 0.9375rem;
  border-bottom: 1px solid #fff;
}

input[type="text"]:focus,
input[type="password"]:focus {
  box-shadow: none;
  outline: 0;
}

.message {
  padding: 0 8px;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  border-left: 3px solid #731c24;
  margin-bottom: 1rem;
  max-width: 42.5625rem;
}

#login_messages {
  color: #fff;
  margin-bottom: 1rem;
}

.form-row {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  position: relative;
  width: 16.25rem;
}

.buttons {
  padding-top: 2rem;
}

input[type="submit"] {
  text-transform: uppercase;
  display: flex;
  width: 16.25rem;
  height: 2.125rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border-radius: 0.125rem;
  border: 2px solid #fff;
  background: #fff;
  color: #399;
  text-align: center;
  font-family: Open Sans;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: #ccc;
  border-color: #ccc;
  color: #206060;
}

input::placeholder {
  color: #fff;
  font-family: Open Sans;
  font-size: 0.9375rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5rem;
  opacity: 0.6;
}

#local_login {
  max-width: 260px;
}

#login_messages {
  width: 42.5625rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

.form-row .icon {
  position: absolute;
}

.info2 {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #fff;
}

.info2 a {
  color: #fff;
}

.login_form {
  display: flex;
  flex-direction: column;
}

#login_next {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 200px;
  column-gap: 2rem;
  row-gap: 1.5rem;
}

#login_next a.loginbutton {
  min-height: 32px;
  height: inherit;
  white-space: wrap;
  word-break: break-word;
}

.login-types {
  display: flex;
  flex-direction: row;
}

a.loginbutton {
  display: flex;
  width: 16.25rem;
  height: 32px;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.125rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  text-align: center;
  font-family: Open Sans;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

a.loginbutton:hover {
  border: 2px solid #ccc;
  color: #ccc;
}

.loginprovider_separator {
  margin-top: 60px;
  margin-left: 5rem;
  margin-right: 5rem;
  border-left: 1px solid #fff;
}

.robot {
  position: absolute;
  top: 40%;
  right: -200px;
  width: 200px;
  height: 300px;
  background: url("../images/Robbi_1.svg") no-repeat;
  transition: right 2s;
}

.robot.shown {
  right: 0;
}

.change-password {
  width: 16.25rem;
}
