/*------------------------------------------------------------------
Template Name: We Log
Theme URI:
Author: Tanvex
Author URI:
Description: WeLog template style
Version: 1.0.0
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

    1. Global style
    2. Loader 
    3. Login page 
    4. Media Queries

-------------------------------------------------------------------*/

/** GLOBAL CLASSES **/
:root {
  --primary-color: #405b84;
  --secondary-color: #2a2622;
  --text-color: #535353;
  --dark-text: #1b1b1b;
  --white: #fff;
  --light-bg: rgba(255, 255, 255, 0.9);
  --icon-bg: #d16803;
  --light-gray: #e6e7ee;
  --primary-btn: #333;
  --primary-btn-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff;
  --primary-btn-shadow-hover: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #fff;
  --icon-shadow: -5px -5px 7px #b1b2b7, 5px 5px 7px #ffffff;
  --icon-shadow-2: 5px 5px 7px #acacac, -5px -5px 7px #ffffff;
}

body {
  font-family: "Encode Sans Semi Expanded", sans-serif;
  color: var(--text-color);
}

img {
  max-width: 100%;
}

.form-control:focus {
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Encode Sans Semi Expanded", sans-serif;
}

/*---------- Global Style closed ----------------*/

/*---------- Loader ----------------*/

.loaderWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
  background-color: var(--light-bg);
  backdrop-filter: blur(5px);
}

.loader {
  width: 90px;
  aspect-ratio: 1;
  display: grid;
  color: var(--primary-color);
  background: conic-gradient(
      from 90deg at 3px 3px,
      #0000 90deg,
      currentColor 0
    ) -3px -3px /
    calc(50% + 1.5px) calc(50% + 1.5px);
  animation: l28 2s infinite;
}
.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  background: repeating-conic-gradient(#0000 0 35deg, currentColor 0 90deg);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 3px), #000 0);
  border-radius: 50%;
}
.loader::after {
  margin: 20%;
}
@keyframes l28 {
  100% {
    transform: rotate(1turn);
  }
}

/*---------- End Loader ----------------*/

/*---------- Login page ----------------*/

.login_wrapper {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  
}

.login_left {
  padding: 30px;
  height: 100%;
  background: url("../images/login-three/login-background.jpg") no-repeat;
  background-size: cover;
}

.login-box-1 {
  border-radius: 0;
  box-shadow: 0 0 0;
  overflow: hidden;
  width: 100%;
  min-height: 100dvh;
  
}

.login_right {
  padding: 40px;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  background: var(--light-gray);
  background-position: center;
  background-size: cover;
}

.loginCenter {
  width: 100%;
  max-width: 600px;
}

.login_right p {
  color: var(--dark-text) !important;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group > label {
  margin-bottom: 3px;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
}
input.input-field {
  width: 100%;
  height: 55px;
  padding: 15px;
  border-radius: 3px;
  outline: none;
  font-size: 15px;
  color: var(--dark-text);
  border: 0;
  border-radius: 10px;
  box-shadow: var(--primary-btn-shadow-hover);
  background-color: var(--light-gray);
}

.login_right h2 {
  color: var(--dark-text);
  font-size: 22px;
  text-align: center;
  margin: 35px 0 20px 0;
  padding-bottom: 15px;
  display: table;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.login_right h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 50px;
  height: 2px;
  background-image: linear-gradient(
    to right,
    #232526 0%,
    #414345 51%,
    #232526 100%
  );
  margin: 0 auto;
}

.form-check-block {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

a.forgotPassword {
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 500;
}

button.custom-btn {
  cursor: pointer;
  padding: 10px 50px 8px 50px;
  height: 55px;
  letter-spacing: 1px;
  font-size: 14px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  border: 0;
  color: var(--primary-btn);
  outline: none;
  background: var(--light-gray);

  box-shadow: var(--primary-btn-shadow);
}
button.custom-btn:hover {
  box-shadow: var(--primary-btn-shadow-hover);
}

.login_right p {
  text-align: center;
  font-size: 14px !important;
}

.login_right p a {
  color: #232526;
  font-weight: 500;
  font-size: 14px !important;
}

a.logo {
  display: block;
  max-width: 250px;
  margin: 0 auto;
}

.login_left {
  align-items: center;
  display: flex;
  justify-content: center;
}

.loginCenter p {
  color: var(--white);
  text-align: center;
  margin: 20px 0;
  font-size: 17px;
  letter-spacing: 0.05em;
}

.social-icons {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  justify-content: center;
}

.social-icons li a {
  margin: 0 5px;
  color: var(--dark-text);
  font-size: 24px;
  padding: 0;
  background:  var(--white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 50px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: var(--primary-btn-shadow-hover);
  background-color: var(--light-gray);
}

.social-icons li a:hover {
  margin-top: -5px;
}


.checkbox-theme input.form-check-input {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: -9999em;
}

label.form-check-label {
  position: relative;
  padding-left: 8px;
  cursor: pointer;
}

label.form-check-label:after {
  content: "\ea4b";
  font-family: wokiee;
  position: absolute;
  left: -22px;
  font-size: 22px;
  line-height: normal;
  font-weight: 300;
}

.checkbox-theme input.form-check-input:checked + label:after {
  content: "\ea4c";
  color: var(--dark-text);
}

.login_right .loginCenter {
  padding: 40px;
  max-width: 600px;
  border-radius: 16px;
  background: var(--light-gray);
  box-shadow: var(--icon-shadow-2);
      min-height: 540px;
    display: flex;
    flex-direction: column;
    place-content:center;

}

.loginIcon {
  display: flex;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-radius: 12px;
  color: #000;
  background: var(--light-gray);
  box-shadow: var(--icon-shadow);
}

/*---------- End Login page ----------------*/

/*---------- Media Queries ----------------*/

@media screen and (max-width:768px){
 
  .login-box-1 .col-lg-6:has(.login_left) {
    display: none;
  }
}

/*---------- End Media Queries ----------------*/
