/*------------------------------------------------------------------
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;
}
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: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.login_left {
  background: var(--primary-color);
  padding: 30px;
  height: 100%;
  
}

.login-box-1 {
  background: var(--white);
  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: url("../images/login-two/texture.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.loginCenter {
  width: 100%;
  max-width: 400px;
}

.login_right p {
  color: var(--dark-text) !important;
}
.form-group{
  margin-bottom: 1.5rem;
}
input.input-field {
  width: 100%;
  height: 50px;
  padding: 15px;
  border-radius: 3px;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(000, 000, 000, 0.03);
  outline: none;
  font-size: 15px;
  color: var(--dark-text);
}

.login_right h2 {
  color: var(--dark-text);
  font-size: 22px;
  text-align: center;
  margin: 0 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: var(--primary-color);
  margin: 0 auto;
}

.form-check-block {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

a.forgotPassword {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

button.custom-btn {
  cursor: pointer;
  padding: 10px 50px 8px 50px;
  height: 45px;
  letter-spacing: 1px;
  font-size: 14px;
  border-radius: 3px;
  text-transform: uppercase;
  width: 100%;
  border: 0;
  background: var(--secondary-color);
  color: var(--white);
  outline: none;
}
button.custom-btn:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  background: #000;
}

.login_right p {
  text-align: center;
  font-size: 14px !important;
  letter-spacing: 1px;
}

.login_right p a {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}



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: 16px;
  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(--primary-color);
    font-size: 22px;
    padding: 0;
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.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;
  font-size: 14px;
}

label.form-check-label:after {
  content: "\ea4b";
  font-family: wokiee;
  position: absolute;
  left: -22px;
  font-size: 22px;
  line-height: normal;
      top: -1px;
}

.checkbox-theme input.form-check-input:checked + label:after {
  content: "\ea4c";
  color: var(--primary-color);
}

.login_right .loginCenter {
  border: 1px solid #ddd;
  padding: 40px;
  max-width: 500px;
  background: var(--white);
  border-radius: 5px 20px 5px 20px;
  box-shadow: 0 0 20px rgba(000, 000, 000, 0.05);
  min-height: 550px;
  display: flex;
    flex-direction: column;
    place-content: center;

}

/*---------- End Login page ----------------*/

/*---------- Media Queries ----------------*/
@media screen and (max-width:768px){
  .login_right .loginCenter {
     min-height: auto;
  }
  .login-box-1 .col-md-5:has(.login_left) {
    display: none;
  }
}

/*---------- End Media Queries ----------------*/
