.login-card {
  padding: 32px 32px 0;
  text-align: center;
  /* margin-top: 20%; */
  width: 100%;

}


.login-card-content { 
  flex-grow: 2;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.form-field {
  margin-bottom: 16px;
  width: 100%;
}

.form-field .inputFeild  {
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  width: 100%;
  border-radius: 16px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  color: #000;
  outline: none;
  transition: all 0.2s;
}

.form-field .inputFeild::placeholder {
  color: #000;
}

.form-field .inputFeild:hover,
.form-field .inputFeild:focus {
  background: white;
  color: #000;
  transition: all 0.2s;
}





/* btn */


.login-btn {
  border-radius: 10px;
  border: none;
  background-color: #FFF;
  color: #000;
  font-weight: bold;
  padding: 12px 45px;
  transition: transform 80ms ease-in;
  cursor: pointer;
  margin-top: 10px;
}

.login-btn:active {
  transform: scale(0.95);
}
.login-btn:hover{
  opacity:0.5;
  
  transition: opacity 2s;


}
.login-btn:focus {
  outline: none;
}


