:root {
  --primary-color: #7DA215;
  --text-color: #DADADA;
  --background-body: linear-gradient(to top, #0d0d0d, rgb(20, 20, 20, 0.9));
  --form-background: linear-gradient(to top, #0d0d0d, rgba(255, 255, 255, 0.1));
  --plainclr: #fff;
  --darkclr:#000;
}

button,
input {
  font: inherit;
  border: none;
}

.login.five {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
  background: var(--plainclr);
}
.login.five .login-wrapper {
  display: flex;
  padding: 210px 0px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.login.five .login-wrapper .back-link {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
  z-index: 10;
}
.login.five .login-wrapper .left-section,
.login.five .login-wrapper .right-section {
  flex: 1;
  position: relative;
  z-index: 1;
}
.login.five .login-wrapper .left-section {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login.five .login-wrapper .left-section h4 {
  font-weight: bold;
}
.login.five .login-wrapper .left-section p {
  color: var(--darkclr);
  max-width: 300px;
  margin-bottom: 20px;
}
.login.five .login-wrapper .left-section img {
  width: 100px;
  height: auto;
}
.login.five .login-wrapper .right-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.login.five .login-wrapper .right-section .login-box {
  background: var(--);
  padding: 50px 40px;
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.login.five .login-wrapper .right-section .login-box h5 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 24px;
}
.login.five .login-wrapper .right-section .login-box form .form-group {
  position: relative;
  margin-bottom: 25px;
}
.login.five .login-wrapper .right-section .login-box form .form-group i {
  position: absolute;
  top: 17px;
  left: 12px;
  color: var(--text-color);
}
.login.five .login-wrapper .right-section .login-box form .form-group .form-control {
  padding-left: 40px;
  height: 48px;
  font-size: 15px;
}
.login.five .login-wrapper .right-section .login-box form .form-links {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 25px;
}
.login.five .login-wrapper .right-section .login-box form .btn-login {
  background: linear-gradient(to right, #ff416c, #1e90ff);
  border: none;
  color: var(--plainclr);
  font-weight: bold;
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 16px;
}
.login.five .login-wrapper .right-section .login-box form .btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.login.five .login-wrapper .right-section .login-box form .create-account {
  text-align: center;
  font-size: 14px;
  margin-top: 20px !important;
}
.login.five .login-wrapper .right-section .login-box form .create-account a {
  color: green;
  font-weight: bold;
  text-decoration: none;
}
.login.five .login-wrapper .background-shape {
  position: absolute;
  z-index: 0;
}
.login.five .login-wrapper .background-shape.shape1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #f44336;
  border-radius: 50%;
}
.login.five .login-wrapper .background-shape.shape2 {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: #3f51b5;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .login.five .login-wrapper {
    flex-direction: column;
  }
  .login.five .login-wrapper .left-section,
  .login.five .login-wrapper .right-section {
    width: 100%;
  }
  .login.five .login-wrapper .left-section img {
    width: 80px;
  }
  .login.five .login-wrapper .right-section .login-box {
    max-width: 90%;
  }
}
.login a:hover,
.login button:hover {
  opacity: 0.8;
}
.login a {
  color: inherit;
  font-size: 13px;
}
.login .form__section {
  width: 100%;
}
.login .form {
  max-width: 300px;
  width: 100%;
  background: var(--form-background);
  border-radius: 8px;
  border: 2px solid #414141;
  padding: 30px;
  margin: 0 auto;
}
.login .form__title {
  font-weight: 600;
  font-size: 20px;
}
.login .form__sub-title {
  margin-top: 8px;
  font-size: 12px;
}
.login .form__input-label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  margin-top: 32px;
}
.login .form__input-wrapper {
  margin-top: 4px;
  position: relative;
  height: 36px;
}
.login .form__input {
  background-color: #303030;
  border: 1px solid #414141;
  border-radius: 4px;
  padding: 0px 16px;
  height: 36px;
  font-size: 12px;
  width: 100%;
  outline: none;
  color: inherit;
}
.login .form__input:focus {
  border-color: var(--primary-color);
}
.login .form__input::-moz-placeholder {
  color: inherit;
}
.login .form__input::placeholder {
  color: inherit;
}
.login .form__input--has-svg {
  padding-right: 40px;
}
.login .form__pass-toggle {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 16px;
  transition: all 100ms linear;
}
.login .form__pass-toggle--active {
  transform: rotate(90deg);
  color: var(--primary-color);
}
.login .form__remmember {
  display: block;
  font-size: 12px;
  margin-top: 32px;
}
.login .form__submit-btn {
  margin-top: 32px;
  width: 100%;
  height: 39px;
  border-radius: 4px;
  background-color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  color: #21270E;
  cursor: pointer;
}
.login .form__sign-up {
  margin-top: 32px;
  display: block;
  font-size: 12px;
}/*# sourceMappingURL=loginDesign5.css.map */