form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 10px;
    background: #007bff; /* サインアップボタンは青にする */
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

button:hover {
    background: #0056b3;
}

/* フォームタイトルのスタイル */
h2 {
    text-align: center;
    color: #333;
}

/* ユーザー名・メールアドレス・パスワードの間隔を統一 */
form input:not(:first-child) {
    margin-top: 15px;
}

/* サインアップページ専用のリンク（ログインページへの誘導） */
.signup-link {
    text-align: center;
    margin-top: 15px;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}
