/* start: Globals */
:root {
  --primary: #42cbb2;
}
/* end: Globals */

/* start: Button */
.btn-primary {
  color: var(--white);
}
/* end: Button */

/* start: Navbar */
.navbar {
  background-color: #e1fff3;
}
/* end: Navbar */

/* start: Get Started */
.login-section {
  padding: 64px 0;
  min-height: calc(100vh - 210px);
}
.login-section-success {
  background-image: linear-gradient(to right, var(--white) 50%, #f7f7f7 50%);
}
.login-box {
  position: relative;
  border: 4px solid var(--logo);
  max-width: 540px;
  margin: 0 auto;
}
.login-decoration {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.login-decoration-top {
  top: -2px;
}
.login-decoration-bottom {
  bottom: -2px;
}
.login-decoration::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 4px solid var(--logo);
  background-color: var(--white);
  position: absolute;
  left: -12px;
}
.login-decoration::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 4px solid var(--logo);
  background-color: var(--white);
  position: absolute;
  right: -12px;
}
.login-header {
  padding: 32px;
  border-bottom: 4px solid var(--logo);
}
.login-body {
  padding: 32px;
}
.login-form-group {
  margin-bottom: 16px;
}
.login-more {
  margin-top: 24px;
  color: var(--text-color);
}
.login-link {
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
.login-link:hover {
  text-decoration: underline;
}
.login-form-box {
  position: relative;
}
.login-form-box > input {
  padding-right: 40px;
}
.login-form-password-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  color: var(--text-color);
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-size: var(--text-lg);
}
/* end: Get Started */

/* start: Breakpoints */
@media screen and (max-width: 575px) {
  .login-header {
    padding: 24px;
  }
  .login-body {
    padding: 24px;
  }
}
/* start: Breakpoints */
