/* 全体スタイル */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f9fafc;
}

/* コンテナスタイル */
.container {
    text-align: center;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 成功時のスタイル */
.success {
    background: #e6ffed;
    border: 1px solid #28a745;
}

.success h1 {
    color: #28a745;
}

.license-key {
    margin: 20px auto;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* 失敗時のスタイル */
.failed {
    background: #ffe6e6;
    border: 1px solid #dc3545;
}

.failed h1 {
    color: #dc3545;
}

/* ボタンスタイル */
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #007bff;
    border-radius: 4px;
    transition: background 0.3s;
}

.button:hover {
    background: #0056b3;
}

.tokutei_shotorihiki {
    color: lightgreen;
    font-weight: bold;
    text-align: right;
    padding-right: 20px;
    padding-top: 50px;
}
