/* === メール／パスワード === */
.email,
.password {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.email label,
.password label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* === リンク === */
a {
    margin-top: 14px;
    display: block;
    text-align: center;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
