main{
  display: flex;
  width: 100%;
}
.white-section{
  width: 57%;
  margin-top: 90px;
}
.blue-section{
  width: 43%;
  background-color: var(--theme-color);
  border-radius: 50px 0 0 50px;
  height: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-bg{
  width: 85%;
  margin: auto;
}
.login-bg img{
  width: 100%;
}
.login-section{
  /* border: 1px solid black; */
  display: flex;
  flex-direction: column;
  width: 71%;
  margin: auto;
}
.login-huge-text{
  font-weight: 600;
  font-size: 32px;
  line-height: 49px;
  margin-bottom: 20px;
}
.login-small-text{
  width: 90%;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-color);
  margin-bottom: 58px;
}
.label-type-1{
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 21.86px;
}
.login-input{
  width: 85%;
  /* border: 1px solid black; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #E1E1E1;
  padding: 14px 0;
  gap: 20px;
  margin-bottom: 38px;
}
.login-input img{
  width: 24px;
  height: 24px;
}
.input-type-1{
  font-size: 16px;
  font-weight: 600;
  border: none;
  outline: none;
  width: 100%;
}
.input-type-1::placeholder{
  color: var(--text-color);
  font-weight: 700;
  font-size: 16px;
}
.login-remember{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  margin-bottom: 60px;
}
.remember{
  gap: 10px;
  display: flex;;
}
.login-remember label{
  font-weight: 700;
  color: #000;
  
}
.login-remember input{
  color: var(--theme-color);
  border: 5px solid;
}
.recover-password{
  border: none;
  background-color: transparent;
  color: var(--theme-color);
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 21.86px;
}
.login-btns{
  display: flex;
  gap: 10px;
  width: 85%;
}
.login-btns button{
  padding: 20px 50px;
  border-radius: 30px;
  font-weight: 500;
  border: transparent;
  width: 50%;
  cursor: pointer;
  color: white;
  background-color: var(--theme-color);
  font-size: 16px;
  line-height: 21.86px;
  transition: 0.4s;
}
.login-btns button:hover{
  color: var(--theme-color);
  background-color: #F1F3FF;
}
.signup-space{
  margin: 60px 0 0;
}
.signup-space2{
  margin: 80px 0 0;
}