.login-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top : 50px;
  margin-bottom: 150px;
}

.login-label {
  font-weight: bold;
  margin-bottom: 10px;
}

.login-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.line-submit-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.login-button {
  display: flex;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
}

.login-output {
  margin-top: 20px;
}

