/**
--------------------------------------------------------------------------
Contents
--------------------------------------------------------------------------
* 1.Fonts Import
* 2.Root Variables
* 3.Reset Styles
* 4.Global Styles
* 5.Helpers
* 6.Login Form Styles
**/

/* 1.Fonts Import
========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400&display=swap");

/* 2.Root Variables
========================================================================== */
:root {
  --body-bg: #00082c;
  --red: #ef3e41;
  --white: #fff;
  --black: #3a3a3c;
  --font-family: "Fira Sans", sans-serif;
}

/* 3.Reset Styles
========================================================================== */
/* *,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* 4.Global Styles
========================================================================== */
body {
  background-color: var(--body-bg);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.4;
}

/* 5.Helpers
========================================================================== */
.red {
  color: var(--red);
}

.black {
  color: var(--black);
}

.h-500 {
  min-height: 500px;
}

.outline-none {
  outline: none !important;
}

.login-text-color {
  color: #404e8d;
}

/* 6.Login Form Styles
========================================================================== */
#form_container {
  background-color: #00082c;
  background: url("../images/client/shield/Login_bg.png") no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 1250px) {
  /* #form_container {
    background: none !important;
    justify-content: center !important;
  } */
}

.sq1-cloud-div {
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
}

#login_form {
  width: 480px;
  /* border-radius: 1rem; */
  /* box-shadow: 0 4px 8px 0px var(--black); */
  /* background: linear-gradient(to bottom ,#ef41407d,#ef4140e6); */
  /* background-color: var(--white); */
  border-left: 5px solid #10254b;
  padding-left: 40px;
  margin: 1rem;
}

/* @media screen and (max-width: 1250px) {
  #login_form_template {
    background-color: #00082c;
  }
} */

@media screen and (max-width: 1000px) {
  #login_form_template {
    background-color: #00082c;
  }

  #login_form {
    /* width: 480px; */

    border-left: none;
    padding-left: 0;
  }

  #form_container {
    background: none !important;
    justify-content: center !important;
  }
}

#form_logo_shield {
  display: none;
}

@media screen and (max-width: 1000px) {
  #login_form {
    /* width: 400px; */
    margin: 0;
    height: auto;
    border-radius: 0;
    box-shadow: none;
  }

  #form_logo_shield {
    display: block;
  }

  #form_logo {
    display: none;
  }
}

#form_logo {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 177px;
}
#form_logo_shield {
  position: absolute;
  top: -29px;
  left: 210px;
  width: 70px;
}

@media screen and (max-width: 420px) {
  #form_logo_shield {
    left: 140px;
  }
}

@media screen and (max-width: 500px) and (min-width: 420px) {
  #form_logo_shield {
    left: 180px;
  }
}

.login-title > span {
  border-right: 2px solid #aeaeae;
}

@media screen and (max-width: 388px) {
  .login-title {
    text-align: center;
  }

  .login-title > span {
    border-right: none;
  }
}

#login_btn {
  /* border-radius: 50px; */
  background-color: #f34f65;
  color: var(--white);
}

#login_btn:hover {
  opacity: 0.9;
}

#login_form .form-group {
  /* background: var(--white); */
  border-radius: 10px;
  /* Only use Rocket Gif image  */
  background: #10254b;
  /* border-bottom: 2px solid #bebebe; */
}

#login_form .form-group input {
  /* Only Use Rocket Gif image  */
  background-color: #10254b;
  font-size: 1.25rem;
}

#login_form .form-group input {
  filter: none;
}

#login_form .form-group input::-webkit-input-placeholder {
  color: #404e8d;
}

#login_form .form-group input:-moz-placeholder {
  color: #404e8d;
}

#login_form .form-group input:-webkit-autofill {
  /* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0), inset 0 0 0 100px rgb(16, 37, 75); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
}

#login_form .login-error {
  position: absolute;
  top: 225px;
  left: 33px;
}

@media screen and (min-width: 768px) {
  #login_form .login-error {
    position: absolute;
    top: 225px;
    left: 33px;
  }
}

@media screen and (max-width: 768px) {
  #login_form .form-group input {
    font-size: 1rem;
  }
}
