﻿@charset "UTF-8";
.login-bg {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  /*background-image: url(../../Assets/img/stord_0000000001_0.jpg);*/
  background: linear-gradient(to bottom, #98add6, #fff);
}

.preset-form-area {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  align-items: center;
}
.preset-form-area .preset-form {
  background: #fff;
  width: 60vw;
}
.preset-form-area .preset-form .preset-heading {
  text-align: center;
}
.preset-form-area .preset-form .preset-heading .flex {
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.preset-form-area .preset-form .preset-heading .flex span {
  color: #140c40;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  text-transform: capitalize;
}
.preset-form-area .preset-form .input-box {
  padding-top: 35px;
  padding-bottom: 30px;
}
.preset-form-area .preset-form .input-box .single-input-fields label {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  color: #140c40;
  text-transform: capitalize;
  font-weight: 500;
  text-align: left;
}
.preset-form-area .preset-form .input-box .single-input-fields input {
  border: 1px solid #c9c9c9;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 25px;
  color: #000;
}
.preset-form-area .preset-form .input-box .single-input-fields input::placeholder {
  color: #777777;
  font-weight: 300;
  font-size: 13px;
}
.login-form-area {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  min-height: 100vh;
  padding: 15px 0;
}
.login-form-area .login-form {
  background: #fff;
  padding: 55px 60px 50px 50px;
  min-width: 700px;
}

.error-message {
  padding-top: 20px;
}

.allert {
  border-style: solid;
  border-color: red;
  border-width: 0 0 0 0.5em;
  display: flex;
  background-color: rgba(255, 195, 195, 0.75);
  border-radius: 6px;
  align-items: center;
  gap: 6px;
  box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.5);
  margin: 10px 0;
}

.warning-allert {
  border-style: solid;
  border-width: 0 0 0 0.5em;
  box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0;
  border-color: red;
  background-color: rgba(255, 195, 195, 0.75);
}
.alert {
  border-style: solid;
  border-width: 0 0 0 0.5em;
  box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0;
}
.alert .alert-message {
  align-content: center;
  padding-left: 0.75rem;
}

.alert-error {
  border-color: red;
  background-color: rgba(255, 195, 195, 0.75);
}

.alert-warning {
  border-color: orange;
  background-color: rgba(255, 243, 205, 0.75);
}

.alert-info {
  border-color: rgb(52, 140, 153);
  background-color: rgba(209, 236, 241, 0.75);
}

.alert-success {
  border-color: rgb(44, 143, 98);
  background-color: rgba(212, 237, 218, 0.75);
}

@media only screen and (min-width: 576px) {
  .login-form-area {
    display: -webkit-box;
    display: -webkit-flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .login-form-area .login-form {
    box-shadow: 0px 10px 30px 0px rgba(13, 12, 13, 0.2);
  }
}
@media only screen and (min-width: 768px) {
  .preset-form-area .preset-form {
    padding: 55px 60px 50px 50px;
    width: 90vw;
    max-width: 700px;
  }
  .preset-form-area .preset-form .error-message {
    padding-top: 20px;
  }
  .preset-form-area .preset-form .input-box {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
  .preset-form-area .preset-form {
    min-width: 95%;
  }
  .login-form-area .login-form {
    padding: 40px 20px 20px 26px;
    min-width: 95%;
  }
}
@media (max-width: 576px) {
  .login-form-area .login-form {
    padding: 40px 20px 20px 26px;
    min-width: 95%;
  }
}
.login-form-area .login-form .login-heading {
  text-align: center;
}
.login-form-area .login-form .login-heading .flex {
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.login-form-area .login-form .login-heading .logo {
  flex: 0 0 auto;
}
.login-form-area .login-form .login-heading .logo img {
  max-height: 9em;
}
.login-form-area .login-form .login-heading span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #140c40;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  text-transform: capitalize;
}
.login-form-area .login-form .input-box {
  padding-top: 35px;
  padding-bottom: 75px;
}
.login-form-area .login-form .input-box .single-input-fields label {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  color: #140c40;
  text-transform: capitalize;
  font-weight: 500;
  text-align: left;
}
.login-form-area .login-form .input-box .single-input-fields input {
  border: 1px solid #c9c9c9;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 25px;
  color: #000;
}
.login-form-area .login-form .input-box .single-input-fields input::placeholder {
  color: #777777;
  font-weight: 300;
  font-size: 13px;
}
.login-form-area .login-form .login-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media (max-width: 576px) {
  .login-form-area .login-form .login-heading .logo img {
    max-height: 6em;
  }
  .login-form-area .login-form .input-box {
    padding-top: 28px;
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
  .login-form-area .login-form .login-footer {
    display: block;
    text-align: start;
  }
}
@media (max-width: 576px) {
  .login-form-area .login-form .login-footer {
    display: block;
    text-align: start;
  }
}
.login-form-area .login-form .login-footer p {
  margin: 0;
}

@media only screen and (min-width: 576px) and (max-width: 768px) {
  .login-form-area .login-form .login-footer p {
    margin-bottom: 28px;
    display: block;
  }
}
@media (max-width: 576px) {
  .login-form-area .login-form .login-footer p {
    margin-bottom: 28px;
    display: block;
  }
}
.login-form-area .login-form .login-footer p a {
  color: #2c64b5;
}

.login-check {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 8px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .login-check {
    display: block;
  }
}
.login-check input[type=checkbox] + label {
  display: inline-block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0;
  margin: 0 0 13px 0;
}

.login-check input[type=checkbox] {
  display: none;
}

.login-check input[type=checkbox] + label::before {
  content: "✔";
  border: 0.1em solid #e4e4e4;
  border-radius: 0.2em;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 10px;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
}

.login-check input[type=checkbox] + label:active:before {
  transform: scale(0);
}

.login-check input[type=checkbox]:checked + label:before {
  background-color: #2c64b5;
  border-color: #2c64b5;
  color: #fff;
  line-height: 18px;
}

.login-check a {
  color: #2c64b5;
  font-size: 14px;
  font-weight: 400;
}

.login-check a:hover {
  color: #2c64b5;
}

@media (max-width: 576px) {
  .login-check a {
    float: left;
    display: block;
    padding-top: 7px;
    margin-bottom: 10px;
  }
}
