/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --h1-font-size: 2rem;
  --normal-font-size: 1rem;
  --small-font-size: .813rem;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== LOGIN ===============*/
.login {
  position: relative;
  height: 100vh;
  display: grid;
  align-items: center;
}

.login__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.login__form {
  position: relative;
  margin-inline: 1.5rem;
  background-color: hsla(0, 0%, 100%, .94);
  border: 2px solid hsla(0, 0%, 100%, .7);
  /*padding: 2.5rem 1rem;
   color: var(--white-color); SS */
  border-radius: 1rem;
  backdrop-filter: blur(1px);
}

.register__form {

  position: relative;
  margin-inline: 1.5rem;
  background-color: hsla(0, 0%, 100%, .94);
  border: 2px solid hsla(0, 0%, 100%, .7);
  /*padding: 2.5rem 1rem;
   color: var(--white-color); SS */
  border-radius: 1rem;
  backdrop-filter: blur(1px);
  /*
  position: relative;
  margin-inline: 1.5rem;
  background-color: hsla(0, 0%, 100%, .01);
  border: 2px solid hsla(0, 0%, 100%, .7);
  padding: 2.5rem 1rem;
  color: var(--white-color);
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  */
}

.login__title {
  text-align: center;
  font-size: var(--h1-font-size);
  margin-bottom: 1.25rem;
}

.login__inputs, 
.login__box {
  display: grid;
}

.login__inputs {
  row-gap: 1.25rem;
  margin-bottom: 1rem;
}

.login__box {
  grid-template-columns: 1fr max-content;
  column-gap: .75rem;
  align-items: center;
  border: 2px solid hsla(0, 0%, 100%, .7);
  padding-inline: 1.25rem;
  border-radius: 4rem;
}

.login__input, 
.login__button {
  border: none;
  outline: none;
}

.login__input {
  width: 100%;
  background: none;
  color: var(--white-color);
  padding-block: 1rem;
}

.login__input::placeholder {
  color: var(--white-color);
}

.login__box i {
  font-size: 1.25rem;
}

.login__check, 
.login__check-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login__check {
  margin-bottom: 1rem;
  font-size: var(--small-font-size);
}

.login__check-box {
  column-gap: .5rem;
}

.login__check-input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--white-color);
}

.login__forgot {
  color: var(--white-color);
}

.login__forgot:hover {
  text-decoration: underline;
}

.login__button {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--white-color);
  border-radius: 4rem;
  color: var(--black-color);
  font-weight: 500;
  cursor: pointer;
}

.login__register {
  font-size: var(--small-font-size);
  text-align: center;
}

.login__register a {
  color: var(--white-color);
  font-weight: 500;
}

.login__register a:hover {
  text-decoration: underline;
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
  .login {
    justify-content: center;
  }
  .login__form {
    width: 420px;
    /* padding-inline: 2.5rem; SS */
  }
 
  .login__title {
    margin-bottom: 2rem;
  }
  .login__bg{
    src: local("assets-web/img/leagueninja-bg-small.jpg");
  }
}
@media screen and (min-width: 768px) {
  .login {
    justify-content: center;
  }
  .login__form {
    width: 420px;
    /* padding-inline: 2.5rem; SS */
  }
  .register__form{
    width: 720px;
    
  }
  .login__title {
    margin-bottom: 2rem;
  }
  .login__bg{
    src: local("assets-web/img/leagueninja-bg-small.jpg");
  }
}


.login-header{
  background-color: #2c2c2c;
  /* border-radius: 1rem; */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 1.5rem;
  color: white;
  text-align: left;
  padding-left: 3rem;
}
.input-box{
  grid-template-columns: 1fr max-content;
  column-gap: .75rem;
  align-items: center;
  border: 3px solid #36ff01;
  padding-inline: 1.25rem;
  border-radius: 4rem;
  /* border-color: #36ff01; */
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: grid;
}
.input-entry{
  width: 100%;
  background: none;
  color: black;
  padding-block: 1rem;
  border: none;
  outline: none;
}
.left-align-text{
  color: black;
  margin-right: 1rem;
}
.btn-green{
  padding: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  background-color: #36ff01;
  border-radius: 4rem;
  color: var(--black-color);
  font-weight: 500;
  cursor: pointer;
  border: none;
}
.bold-text{
  color: black;
  font-weight: bolder;
  font-size: medium;
}
.underline-text{
  text-decoration: underline;
}
body{
  background-image: url('../img/leagueninja-bg.jpg');
  background-position: right left;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#loader {
  background: url('../img/leagueninja.gif') no-repeat center center;
  /*
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;  
  */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9999999;
}
.loader-text{
  color: #141613;
  margin-top: 3rem;
  vertical-align: middle;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


            
/* CSS Switch */
input[switch] {
  display: none;
}
input[switch] + label {
  font-size: 1em;
  line-height: 1;
  width: 56px;
  height: 24px;
  background-color: #ced4da;
  background-image: none;
  border-radius: 2rem;
  padding: 0.16667rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  position: relative;
  font-weight: 500;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
input[switch] + label:before {
  color: #0f111d;
  content: attr(data-off-label);
  display: block;
  font-family: inherit;
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
  position: absolute;
  left: 1px;
  margin: 3px;
  top: -2px;
  text-align: center;
  min-width: 1.66667rem;
  overflow: hidden;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
input[switch] + label:after {
  content: "";
  position: absolute;
  right: 3px;
  background-color: #e9ecef;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 2rem;
  height: 20px;
  width: 20px;
  top: 2px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
input[switch]:checked + label {
  background-color: #44a2d2;
}

input[switch]:checked + label {
  background-color: #44a2d2;
}
input[switch]:checked + label:before {
  color: #fff;
  content: attr(data-on-label);
  left: auto;
  right: 3px;
}
input[switch]:checked + label:after {
  right: 33px;
  background-color: var(--bs-secondary-bg);
}

input[switch=bool] + label {
  background-color: #f1556c;
}

input[switch=bool] + label:before, input[switch=bool]:checked + label:before,
input[switch=default]:checked + label:before {
  color: #fff;
}

input[switch=bool]:checked + label {
  background-color: #0acf97;
}

input[switch=default]:checked + label {
  background-color: #a2a2a2;
}

input[switch=primary]:checked + label {
  background-color: #44a2d2;
}

input[switch=success]:checked + label {
  background-color: #0acf97;
}

input[switch=info]:checked + label {
  background-color: #2d7bf4;
}

input[switch=warning]:checked + label {
  background-color: #f9bc0b;
}

input[switch=danger]:checked + label {
  background-color: #f1556c;
}

input[switch=dark]:checked + label {
  background-color: #0f111d;
}

.square-switch {
  margin-left: 7px;
}
.square-switch input[switch] + label, .square-switch input[switch] + label:after {
  border-radius: 0px;
}