* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  scrollbar-width: thin;
}

body,
html {
  overflow-x: hidden;
}

/* Font family css */
@font-face {
  font-family: "CabinetGrotesk-Medium";
  src: url("../fonts/CabinetGrotesk-Medium.woff2") format("woff2"),
    url("../fonts/CabinetGrotesk-Medium.woff") format("woff"),
    url("../fonts/CabinetGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "PlayFairDisplay";
  src: url("../fonts/PlayfairDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "PoppinsMedium";
  src: url("../fonts/Poppins-Medium.ttf");
}

@font-face {
  font-family: "PoppinsSemiBold";
  src: url("../fonts/Poppins-SemiBold.ttf");
}

/* Font Family css */

.login-container-fluid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.login-container-fluid>div:nth-child(1) {
  background-color: rgba(43, 162, 197, 1);
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-container-fluid>div:nth-child(1)>img:nth-child(1) {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.099;
}

.login-container-fluid>div:nth-child(1)>img:nth-child(2) {
  position: absolute;
  top: 50px;
  right: -45px;
}

.login-container-fluid>div:nth-child(1)>img:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
}

.login-container-fluid>div:nth-child(2)>img {
  width: 100%;
  height: 100vh;
  object-fit: contain;
  overflow-clip-margin: unset;
  overflow: hidden;
}

.logo-row {
  text-align: center;
}

.logo-row>img {
  width: 230px;
}

.logo-row>p {
  font-family: "CabinetGrotesk-Medium";
  color: white;
  margin-top: 10px;
}

.login-box-row {
  background-color: white;
  box-shadow: 0px 398px 111px 0px rgba(0, 0, 0, 0);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  top: 0;
  z-index: 9999;
  max-width: 340px;
  margin: 30px auto;
}

.login-box-row>h1,
.login-box-row>p {
  text-align: center;
}

.login-box-row>h1 {
  font-family: "PlayFairDisplay";
  font-size: 32px;
}

.login-box-row>p {
  font-family: "PoppinsMedium";
  font-size: 13px;
  color: rgba(28, 28, 28, 1);
}

.login-form {
  margin-top: 18px;
}

.login-form>div {
  margin: 5px 0px 15px 0px;
}

.login-form>div>label {
  font-family: "PoppinsMedium";
  font-size: 13px;
  color: rgba(28, 28, 28, 1);
}

.login-form>div>.input>input {
  height: 54px;
  border-radius: 50px;
  width: 100%;
  background-color: rgba(235, 240, 242, 1);
  margin-top: 5px;
  padding: 0px 15px;
  border: none;
  outline: none;
  font-family: "PoppinsMedium";
  font-size: 14px;
}

.login-form .input{
  position: relative;  
}

.login-form .input .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.login-form a {
  font-family: "PoppinsMedium";
  font-size: 13px;
  color: rgba(28, 28, 28, 1);  
  text-decoration: none;
}

.cta-login {
  text-align: center;
}

.cta-login>button {
  width: 100%;
  background-color: rgba(0, 0, 0, 1);
  color: white;
  text-transform: uppercase;
  height: 54px;
  margin-top: 15px;
  border-radius: 50px;
  font-family: "PoppinsSemiBold";
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

::placeholder {
  color: rgba(28, 28, 28, 0.2) red;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Edge 12-18 */
  color: rgba(28, 28, 28, 0.2);
}

@media screen and (max-width: 992px) {
  .logo-row>p>br {
    display: none;
  }

  .login-container-fluid {
    grid-template-columns: 1.5fr 1fr;
  }

  .login-container-fluid>div:nth-child(1) {
    padding: 0px 20px;
  }
}

@media screen and (max-width: 640px) {
  .login-container-fluid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .login-container-fluid>div:nth-child(2) {
    display: none;
  }

  .login-container-fluid>div:nth-child(1) {
    z-index: 99999;
  }

  .login-container-fluid>div:nth-child(1)>img:nth-child(3) {
    z-index: -1;
  }

  .login-container-fluid>div:nth-child(1)>img:nth-child(2) {
    z-index: -1;
  }
}

.btn.red
{
  background-color: #e7505a;
  color : #FFF;
}

.btn.blue
{
  background-color: #578ebe;
  color : #FFF;
}