/* Login Page Styles */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #333333;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555555;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

p {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}
.btn-orange {
  display: inline-block;
  padding: 10px 18px;
  background-color: #ff8c00;   /* オレンジ */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 9999px;  /* ← ここがポイント */
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-orange:hover {
  background-color: #ff7400;
  transform: translateY(-1px);
}

.btn-orange:active {
  transform: translateY(0);
}
.header-login {
  position: absolute;
  top: 15px;
  right: 20px;
}
.linktxt {
  display: inline-block;
  /* --- 文字を中央に寄せる --- */
  text-align: center; 
  
  /* --- 余白とサイズ --- */
  padding: 5px 12px;
  font-size: 0.9rem;
  font-weight: bold;
  
  /* --- 見た目（色・枠線） --- */
  background-color: #ffffff;
  color: #b45309;
  border: 1px solid #fcd34d;
  border-radius: 50px;
  text-decoration: none;
  
  /* --- アニメーションと影 --- */
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ホバー時に少し色を変えるとよりボタンらしくなります */
.linktxt:hover {
  background-color: #fffbeb;
  border-color: #fbbf24;
}
.glink {
  text-align: center;
  margin: 15px 0; /* 前後に少し隙間を作ると見やすいです */
}