:root {
  /* Pixelsuite */
  --pixelsuite-blue: #2C3E50;
  --pixelsuite-blue-offset: #16657a;
  --pixelsuite-blue-alt: #008f92;
  --pixelsuite-light-blue: #3498DB;
  --pixelsuite-teal: #75FFDB;
  /* UI Colors */
  --mist-grey: #f2f2f2;
  --aluminium: #d5d5d5;
  --ashes: #565656;
  --charcoal: #414042;
  --background-curve-size: 100px;
  --background-color: var(--pixelsuite-blue);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --form-bg: rgba(255, 255, 255, 0.95);
}

body {
  background: var(--pixelsuite-blue);
  background-size: cover;
  min-height: 100vh;
  font-family: "PT Sans", sans-serif;
}

.section-solid {
  background-size: cover;
  background-position: center;
  position: relative;
}
.section-solid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}

.section-curved {
  position: relative;
}

#LoginForm {
  background: var(--form-bg);
  padding: 40px;
  width: 85%;
  margin: auto;
  max-width: 450px;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 600px;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px var(--shadow-color);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
#LoginForm .LoginFormLoading {
  display: none;
}

#LoginForm.active {
  height: 120px;
  transform: scale(0.98);
}
#LoginForm.active .LoginFormLoading {
  display: flex;
  justify-content: center;
  justify-items: center;
  height: 60px;
  flex-direction: column;
  text-align: center;
  color: var(--pixelsuite-light-blue);
  font-weight: bold;
  font-size: 20px;
  animation: pulse 1.5s infinite;
}
#LoginForm.active .LoginFormLoading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--pixelsuite-light-blue);
  margin: 8px auto 0;
  border-radius: 3px;
  animation: loading 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes loading {
  0% {
    width: 40px;
  }
  50% {
    width: 100px;
  }
  100% {
    width: 40px;
  }
}
#LoginForm.active * {
  display: none;
}

#CyberryLogo {
  margin: 0 auto 30px;
  max-width: 220px;
  display: block;
  transition: transform 0.3s ease;
}
#CyberryLogo:hover {
  transform: scale(1.05);
}

.alert {
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
}
.alert.alert-warning {
  background-color: rgba(255, 248, 225, 0.8);
  color: #856404;
  border-left: 4px solid #ffc107;
}

.form-control-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.form-control-wrapper .form-control-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ashes);
  font-size: 16px;
}
.form-control-wrapper input.form-control {
  border-radius: 12px;
  padding: 13px 16px 13px 45px;
  background: #FFFFFF;
  border: 1px solid var(--aluminium);
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: none;
}
.form-control-wrapper input.form-control:focus {
  border-color: var(--pixelsuite-light-blue);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}
.form-control-wrapper input.form-control::placeholder {
  color: var(--ashes);
  opacity: 0.6;
}

.btn-pixelsuite {
  color: #fff;
  background: linear-gradient(135deg, var(--pixelsuite-light-blue), var(--pixelsuite-blue-alt));
  border: none;
  border-radius: 12px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 143, 146, 0.3);
}
.btn-pixelsuite:hover, .btn-pixelsuite:focus {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(0, 143, 146, 0.4);
  color: #fff;
}
.btn-pixelsuite:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0, 143, 146, 0.3);
}
.btn-pixelsuite::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
.btn-pixelsuite:hover::after {
  left: 100%;
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
}
.login-divider hr {
  flex-grow: 1;
  border: none;
  height: 1px;
  background: var(--aluminium);
  opacity: 0.5;
}

.reset-link {
  text-align: center;
}
.reset-link a {
  color: var(--ashes);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
}
.reset-link a:hover {
  color: var(--pixelsuite-light-blue);
  background: rgba(52, 152, 219, 0.05);
  transform: translateY(-2px);
}

#version {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  padding: 15px 0 0;
  margin-top: 15px;
  letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
  .section-curved {
    border-radius: 0 !important;
  }
  #CyberryLogo {
    margin: 0 auto 30px;
    max-width: 180px;
  }
}
@media (max-width: 576px) {
  #LoginForm {
    background: var(--form-bg);
    width: 100%;
    padding: 30px 25px;
    border-radius: 12px;
  }
  #RowContainer > .RowSection {
    padding: 0 15px;
  }
  .form-control-wrapper input.form-control {
    font-size: 15px;
  }
}

/*# sourceMappingURL=login.css.map */
