* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

 /*altn: e7ecff; (135deg, #C645F9 0%, #b743b6 50%, #5E6CE7 100%);   background: linear-gradient(135deg, rgba(198, 69, 249, 0.8), rgba(183, 67, 182, 0.8), rgba(94, 108, 231, 0.8));
*/

html{
  font-size: 16px;
}

body {
  background: #F1F3F5;
  font-family: "Zain", sans-serif;
}

.outerContainer{
  display: flex;
  width: 100%;
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.container {
  height: 50%;
  width: 75%;
  max-width: 1100px;
  border-radius: 12px;
  display: flex;
  
}

.shadow{
  box-shadow: 0.3rem 0.5rem 0.8rem rgba(0, 0, 0, 0.25);
}

.login-box {
  display: flex;
  width: 100%;
  min-height: 600px;
}

.titleContainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

}

.welcomeSpan {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
  margin-bottom: -8px;
}

.brandContainer{

  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0px;

}

.brandContainerSide{
  display: flex;
  flex-direction: column;
  align-items: center;

}

.brandLogo{
  width: 4.3rem;
  margin-right:10px;
}

.brandName{
  font-size: 3.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #924a92 0%, #4e5ca0 100%);
  /*background: linear-gradient(135deg, #e53989 0%, #b743b6 50%, #2fb5ff 100%); older gradient */
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent */
}

.form-side {
  width: 50%;
  padding: 50px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px 0px 0px 12px;
}




.tagline {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 350px;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.credentialsBox{
  width: 80%;

}

.input-group {
  width:100%;
  margin-bottom: 20px;
  position: relative;
  display: flex;
}

.input-group input {
  width: 100%;
  padding: 14px 16px;
  padding-left: 55px;
  padding-right: 3rem;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 0.8rem;
  outline: none;

}

.usrIconLogin{
  width:1.2rem;
  position: absolute;
  top: 50%;
  margin-left:20px;
  opacity: 0.4;
  transform: translateY(-50%);
  pointer-events: none;
}

.password-group {
  display: flex;
  align-items: center;

}

.togglePwdEye{
  width:1.1rem;
  opacity:0.5;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 15px;
  box-sizing: content-box;
  transition: opacity 0.5s ease;
}

.togglePwdEye:hover{
  opacity: 0.8;
}

.btn {
  background: linear-gradient(135deg, #924a92 0%, #4e5ca0 100%);
   /* background: linear-gradient(135deg, #e53989 0%, #b743b6 50%, #2fb5ff 100%); older gradient */
  border: none;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 25px;
}

.btn:hover {
  opacity: 0.9;
}

.signup-text {
  margin-top: 15px;
  font-size: 0.8rem;
}

.signup-text a {
  color: #dd2476;
  text-decoration: none;
  font-weight: 500;
}

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider span {
  background: #fff;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.divider:before {
  content: "";
  height: 1px;
  background: #ccc;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.visual-side {
  width: 50%;
  background: url('media/biga2.png') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 12px 12px 0px;
}

.overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(146, 74, 146, 0.8) 0%, rgba(78, 92, 160, 0.8) 100%);

  /* background: linear-gradient(135deg, rgba(229, 57, 137, 0.8), rgba(183, 67, 182, 0.8), rgba(47, 181, 255, 0.8)); older gradient */
  color: #fff;
  padding: 30px;
  text-align: center;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0px 12px 12px 0px;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.info-text {
  font-size: 0.8rem;
}

.sidetext{
  color: #eee;
}

.brandNameSide{
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: -20px;


}

.sideLogo{
  filter: brightness(0) invert(1);
  margin-bottom: -15px;
}

.acvSideLogo{
  width: 14.4rem;
  margin-top: -20px;

}


.collab{
  font-weight: bold;
  font-size: 1.9rem;
  margin-top: -10px;
  margin-bottom: -10px;
}


@media (max-width: 900px) {

  body{
    background-color: #fff;
  }
  html{
    font-size: 19px;
    
  }

  .outerContainer{
    overflow-y: none;
  }

  .container{
    width: 100vw;
    min-height: 100vh;
    border-radius: none;


  }

  .login-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .form-side{
    width: 100%;
    
    min-height: calc(100vh - 4rem)!important;
    border-radius: 0px;
  }



  .visual-side{
    width:100%;
    min-height: calc(100vh + 0rem)!important;
    border-radius: 1.5rem 1.5rem 0px 0px;

    

  }

  .overlay{
    border-radius: 1.5rem 1.5rem 0px 0px;
    

    

  }

  .shadow{
  box-shadow: 0.3rem 0.5rem 0.8rem rgba(0, 0, 0, 0);
}

  .titleContainer{
    gap: 0.3rem;
  }

  .titleContainerSideGap{
    gap:1rem;
  }
}





@media (max-width: 450px) {
  html{
    font-size: 17px;
  }

}

@media (max-width: 315px) {
  .container {
    min-width:315px;
    overflow-x: auto;
  }

}
