@charset "utf-8";

/* login.css */

.form-check-input {
  border: 1px solid #cccccc; /* 濃い青に変更 */
  border-radius: 0.25rem;      /* 角丸も調整可能 */
  width: 1.25em;               /* サイズ微調整 */
  height: 1.25em;
}

.form-check {
  display: flex;
  align-items: center; /* 垂直方向を中央に揃える */
  gap: 0.5rem; /* チェックボックスとテキストの間隔 */
}

.login-forgot-password a {
  color: #06295d;
  text-decoration: none;
  font-weight: 500;
}

.login-forgot-password a:hover {
  text-decoration: underline;
}