/* Font */
@font-face {
  font-family: "rubik-Bold";
  src: url("../font/Rubik-Bold.ttf");
}

/*Body*/
body {
  font-family: "rubik-regular", sans-serif;
  margin: 0;
  background: #f6f2f2 url("../img/excl-bg.webp") center top no-repeat;
  background-size: cover;
}

/* Exclusife Section */
.exclusife_sect {
  position: relative;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exclusife_container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0px 3px 6px #00000029;
  align-items: center;
  border-radius: 10px;
  background: #fff;
}

/* Exclusife Prime Banner Section */
.exclusife_prime {
  background: #2b2f7f;
  width: 50%;
  border-radius: 9px 0px 0px 9px;
  padding: 60px 60px 290px;
  color: #fff;
  position: relative;
}

.brand-logo {
  margin: 0 auto 35px;
}

.brand-logo img {
  max-width: 100%;
  width: 157px;
}

.hide-bg {
  display: none;
}

.exclusife_prime p {
  margin: 0 auto;
  font-size: 23px;
}

.exclusife_prime h4 {
  font-size: 26px;
  font-weight: 700;
  max-width: 265px;
  line-height: 1.2;
  margin: 15px 0;
}

.exclusife_prime:after {
  content: "";
  background: url("../img/login-bg.svg") no-repeat;
  position: absolute;
  right: 0;
  width: 374px;
  height: 330px;
  bottom: 0;
}

/* Exclusife Login */
.exclusife_login {
  width: 50%;
  padding: 40px 60px;
}

.customer-logo img {
  max-height: 200px;
  max-width: 300px;
}

.exclusife_login h2 {
  font-size: 23px;
  font-weight: 700;
  margin: 35px auto 25px;
}
/* form */
.login_form label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.login_form input {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #118cff;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 20px;
  max-width: 300px ;
}

/* Specilly used for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.login_form input:focus {
  outline: none;
  border: 1.5px solid #118cff;
}

.login_btn {
	 
  font-size: 18px;
  font-weight: 500;
  background: #118cff;
  color: #fff;
  padding: 10px 40px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 6px;
}

.login_btn:hover {
  background: #2b2f7f;
}

/* Media Queries For Responsive */
@media screen and (min-width: 1600px) {
  .exclusife_container {
    margin: 0 200px;
  }
  .login_form input {
    max-width: 270px;
  }
}

@media screen and (max-width: 1024px) {
  .exclusife_sect {
    padding: 0 40px;
  }
}

@media screen and (max-width: 690px) {
  body {
    background: #fff;
  }
  .exclusife_sect {
    padding: 0;
  }
  .hide-sm {
    display: none;
  }
  .hide-bg {
    display: block;
  }
  .brand-logo {
    margin: 0 auto;
  }
  .exclusife_login h2 {
    margin-top: 10px;
  }
  .exclusife_container {
    display: block;
    box-shadow: none;
  }
  .exclusife_prime {
    width: auto;
    border-radius: 9px 9px 0 0;
    padding: 30px 30px 15px;
    position: initial;
    background-color: transparent;
    color: #000;
  }
  .exclusife_prime::after {
    display: none;
  }
  .exclusife_login {
    padding: 20px 30px;
  }
  .login_form input {
    width: 250px ;
  }
  
}
