.login {
  height: auto;
  padding: 0;
  margin: 0;
}

.login div#container {
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  border: none;
  overflow-x: hidden;
}

.login div#main {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.login div#content-start {
  width: 100%;
  height: auto;
}

.login div#content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.login div#layout-content {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.login .img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.login .filter {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(156, 180, 157, 0.95);
}

.login img {
  object-fit: cover;
  height: 100%;
}

.login .text-content {
  z-index: 3;
  width: 90%;
  height: 90%;
  background-color: rgba(233, 238, 226, 0.6);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  position: absolute;
  overflow: hidden;
  display: flex;
}

.login section.text-context-image-container {
  width: 50%;
  overflow: hidden;
}

.login section.text-context-form-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login div.login-container {
  background-color: white;
  width: 60%;
  padding: 2rem 0rem;
  box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.login div.login-container::-webkit-scrollbar {
  display: none;
}

.login div.form-container {
  width: 90%;
  height: auto;
}

.login div.login-container form {
  height: 100%;
  width: 100%;
  gap: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.login div.login-container form .input-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login .password-reset-link {
  width: 100%;
  text-align: right;
}

.login .password-reset-link a {
  text-decoration: underline;
  color: black;
  font-family: "Quicksand";
}

.login .errornote {
  width: 93%;
  background-color: white;
  font-family: "Quicksand";
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
  padding: 10px 12px;
  margin: 0 0 10px 0;
  color: red;
  border: 1px solid red;
  border-radius: 4px;
  background-color: var(--body-bg);
  background-position: 5px 12px;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.login .input-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login .input-field .prefix-error ul {
  background-color: white;
  width: 93%;
  font-family: "Quicksand";
}

.login .input-field label {
  color: black;
  font-size: 0.8rem;
  font-family: "Quicksand";
}

.login .input-field input {
  width: 96%;
  height: 2.3rem;
  border: none;
  overflow: hidden;
  background-color: var(--input-background-color);
  color: black;
  font-weight: 700;
  font-family: "Quicksand";
  padding-left: 10px;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

.login div.title-container {
  width: 90%;
  height: auto;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.login div.logo {
  background-color: var(--vertikl-main-color);
  width: 27%;
  height: 27%;
  min-width: 110px;
  min-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

.login div.logo span {
  color: white;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 600;
}

.login .login-title-container {
  color: var(--vertikl-main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.login .login-title-container .login-title {
  font-size: 2rem;
  text-transform: capitalize;
  font-family: "Times New Roman", Times, serif;
}

.login .login-title-container .login-subtitle {
  font-size: 1.1rem;
  text-transform: capitalize;
  font-family: "Quicksand";
}

.login form .btn {
  width: 100%;
  height: 100%;
  min-height: 50px;
  color: white;
  background-color: var(--vertikl-main-color);
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  font-family: "Quicksand";
}

.login #header {
  display: none;
  width: 0;
  height: 0;
}

.login #footer {
  display: none;
}

@media screen and (min-width: 992px) and (max-width: 1237px) {
  .login div.login-container {
    width: 80%;
  }
}

@media screen and (max-width: 991px) {
  .login div#layout-content {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login .text-content {
    width: 90%;
    height: 90%;
    border-radius: 30px;
  }

  .login section.text-context-image-container {
    display: none;
  }

  .login section.text-context-form-container {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 455px) and (max-width: 755px) {
  .login div.login-container {
    width: 80%;
  }
}

@media screen and (max-width: 454px) {
  .login .text-content {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  .login div.login-container {
    width: 100%;
    height: 100%;
    gap: 20%;
  }

  .login form .btn {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 290px) {
  .login div.title-container {
    width: 70%;
    align-items: center;
    margin-left: -1.5rem;
  }

  .login div.login-container form .input-container {
    width: 90%;
  }

  .login form .btn {
    width: 90%;
  }
}
