/* ボタン関連スタイル - auth_buttons.css */

/* ボタン */
.btn-primary {
    width: 100%;
    padding: 12px 20px;
    background-color: #091747;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin-bottom: 10px;
}

.btn-primary:hover {
    background-color: #0f2557;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(9, 23, 71, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    width: 100%;
    padding: 12px 20px;
    background-color: #6c757d;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin-bottom: 10px;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* システム移行時のパスワード再設定ボタン強調 */
.migration-active .btn-secondary {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    font-weight: 500;
}

.migration-active .btn-secondary:hover {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    transform: translateY(-2px);
}

@keyframes gentle-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    }

    50% {
        box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
    }
}

/* リンク */
.back-link {
    margin-top: 20px;
}

.back-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #091747;
}