
/* Form Layout */
.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
  width: 100%;
  margin: auto;
  /* background: whitesmoke; */
}

/* Floating Label Wrapper */
.floating-label {
  position: relative;
  width: 100%;
}

/* Input */
.floating-label input {
  width: 100%;
  padding: 2px 12px;
  margin: 6px 0px;
  font-size: 16px;
  border: 2px solid #999;
  border-radius: 6px;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}

/* Label */
.floating-label label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
  pointer-events: none;
  transition: 0.2s ease all;
  background: white;
  padding: 0 4px;
}

/* Focus + Filled state */
.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
  top: 4px;
  left: 8px;
  font-size: 12px;
  color: var(--dark);
}

.login_input{
    font-size: 16px;
    width: 80%;
    padding: 9px;
    height: 40px;
    margin: 12px;
    /* margin: 8px; */
    border: 2px solid var(--dark);
    border-radius: 8px;
}


@media screen and (max-width: 768px) {
  .form-container{
      max-width: 360px;
  }
}  