.new__tag{
  position: absolute;
  top: 4%;
  left: 2%;
  background-color: var(--mv-light-purple);
  color: var(--mv-white);
  font-size: var(--small-font-size);
  padding: .25rem .5rem;
  border-radius: .25rem;
  z-index: 9;
}

.new__tag a{
  color: var(--mv-white);
}

.new__tag:hover{
  background-color: var(--mv-purple);
}

.containerAuth{
  display: flex; 
  height: auto;
  min-height: 100vh;
  width: auto;
  min-width: 100vw;
  box-sizing: border-box;
}
.leftContent{
  position: relative;
  flex: 1 1 0% ;
  display: none;
  width: 0px;
}

.loginImage{
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.75);
}

.centerContentLeft{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.textCentered{
  text-align: right;
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: var(--mv-white)
}

.textCentered span{
color: var(--mv-green)
}

.rightContent{
  position: relative;
  display: flex; 
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.loginImageRight{
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.65);
  display: none;
}

.loginForm{
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.containerForm{
  width:100vw;
}

.containerForm .subcontainer{
  display: flex;
  justify-content: center;
}

.containerForm .subcontainer div{
  width:33%; 
  height:33%;
}

.containerForm .contSubForm{
  padding-top: 1.25rem; 
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.uiLabel{
  display: block;
  padding-left: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-left: 1px;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  color: rgb(55 65 81 / var(--tw-text-opacity));
}

.uiInput{
  display: block;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-color: rgb(209 213 219 / 1);
  border-radius: 9999px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);

  border-width: 1px;
  border-style: solid;
}

.uiInput:focus{
  border-color: var(--mv-green)
}

.uiButton{
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  text-transform: none;
  background-image: none;
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 9999px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;

  
  font-size: 0.875rem;
  line-height: 1.25rem;

  margin-top: calc(1.5rem * calc(1 - 0));
  margin-bottom: calc(1.5rem * 0);

  border: none;
  background-color: var(--mv-green);
  color: var(--mv-white);
}

.uiButton:hover{
  background-color: var(--mv-light-green);
}

.uiButton.disabled{
  cursor: not-allowed;
  background-color: rgb(172 231 231 / 1);
}

.errorMessage{
  color: red;
}
@media screen and (max-width: 1002px) {
  .rightContent{
    background-image: url(../img/fashion3.jpg);
    width: 100vw;
  }
  .uiLabel{
    color: var(--mv-white);
  }
  .uiButton{
    color: var(--mv-white);
  }
  .loginImageRight{
    display: block;
  }

}


@media screen and (min-width: 1002px) {
  .rightContent{
      padding-left: 1.5rem/* 24px */;
      padding-right: 1.5rem/* 24px */;
  }
  .leftContent{
      display: block;
  }
  .rightContent{
      flex:none;
      padding-left: 5rem;
      padding-right: 5rem;
  }
  .loginForm{
      width: 24rem;
  }
}

@media screen and (min-width: 1092px) {
}
@media screen and (min-width: 1280px) {
  .rightContent{  
      padding-left: 6rem/* 96px */;
      padding-right: 6rem/* 96px */;
  }
}