  /* style_login.css*/
* {
    box-sizing: border-box;
    }
    
    *:focus {
      outline: none;
    }
    html,body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
    }

    .login {
    margin: 20px auto;
    width: 100%;
    }
    .login-screen {
    background-color: #e1e1e1;
    padding: 20px;
    border-radius: 5px
    }
    
    .app-title {
    text-align: center;
    color: #777;
    }
    
    .login-form {
    text-align: center;
    }
    .control-group {
    margin-bottom: 10px;
    }
    
    input {
    text-align: center;
    background-color: #ECF0F1;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 200;
    padding: 10px 0;
    width: 100%;
    transition: border .5s;
    }
    
    input:focus {
    border: 2px solid #3498DB;
    box-shadow: none;

    
  }
  
  /* ユーザー名フィールドを編集不可能な見た目にする */
.input-readonly {
  background-color: #dfdfdf; /* 背景色を変更 */
  border: 1px solid #dfdfdf !important; /* 枠線の色を変更 */
  color: #999999; /* テキストの色を変更 */
}

/* ボタンのデザイン */
.button-container {
  display: flex; /* フレックスボックスを有効化 */
  align-items: center; /* アイテムを中央揃えに */
  justify-content: flex-start; /* コンテナの中心にアイテムを配置 */
  gap: 10px; /* ボタンの間に10pxのスペースを追加 */
}

.btn {
  background-color: #9e9e9e;
  color: white;
  border: none;
  padding: 4px 10px;
  text-decoration: none; /* アンダーラインを取り除く */
  margin-top: 7px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.8rem;
}

.btn:hover {
  background-color: #5e5e5e;
}

.container {
  max-width:40%;
  margin: auto;
  padding: 5rem 0;
  border-radius: 8px;
  position: relative; /* positionをrelativeに設定します */
  text-align: center; /* 子要素のインライン要素を中央に揃える */
  /* containerの高さは必要に応じて調整してください */
  
}


@media only screen and (max-width: 600px) {
  .container {
    max-width: 90%;
    padding: 5rem 0;
  }
}